class A
{
private int i;
}
class B extends A
{
private int i;
}
if I create an object of B class what will be the memory of that object.
Answer Posted / core java
In general we can't get the size of the object.
we Just cant think about this.Because the object is created
by **JVM**.Not by us.Internally some memory location is
allocated by the JVM.who we are talk about the object size.
but for out satisfication we are saying that some size
that depends on the variables only(primitive data types).
When object of the class B is created ,object of C and
object Of Object class are also created.Those properties
references are available in object of class B.
So we just can not think about the size of the object
really.
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
Which package is imported by default?
What is the role of garbage collector in java?
What is the purpose of the finally clause of a try-catch-finally statement in java programming?
is there a separate stack for each thread in java? : Java thread
Can a static class implement an interface?
What is string manipulation?
What is the difference between length and size in java?
What are the different approaches to implement a function to generate a random number?
What is main function purpose?
How do you make an arraylist empty in java?
How variables are stored in memory?
Is space a char?
What is the difference between a constructor and a method?
How can constructor chaining be done by using the super keyword?
Can we overload final method in java?