If I create a class like:
public class Test{
int id;
String name;
}
Now, if I have to use the class, we have to just create a instance of the class as
Test testObj = new Test();
I would like to know how the actual object is created in the system. (In core level, what will be the structure of the object.)