How can we find size of the object ?

Answers were Sorted based on User's Feedback



How can we find size of the object ?..

Answer / niranjanravi

there is no sizeOf() in java to find the size of the object

Is This Answer Correct ?    8 Yes 4 No

How can we find size of the object ?..

Answer / m!r@

public class FindSizeOfObject{
public static void main(String[] args) throws Exception{

Runtime obj = Runtime.getRuntime();
System.out.println(obj.totalMemory() - obj.freeMemory());
}
}

Is This Answer Correct ?    1 Yes 1 No

How can we find size of the object ?..

Answer / lachha g

you can use Instrumentation class.

use long getObjectSize(Object objectToSize) method.
It returns amount of storage consumed by the specified object.
package Test;

import java.lang.instrument.Instrumentation;

public class ObjectSize {
private int x;
private int y;

ObjectSize(int x, int y){
this.x=x;
this.y=y;
}


public static void main(String [] args) {
ObjectSize obj= new ObjectSize(2,4);
System.out.println(Test.getObjectSize(obj));
}
}
class Test {
private static Instrumentation instrumentation;

public static void premain(String args, Instrumentation inst) {
instrumentation = inst;
}

public static long getObjectSize(Object o) {
return instrumentation.getObjectSize(o);
}
}

Is This Answer Correct ?    0 Yes 0 No

How can we find size of the object ?..

Answer / sitaram

we don't have any method for to identify the size of object
in java.

Is This Answer Correct ?    0 Yes 2 No

How can we find size of the object ?..

Answer / suvarna

getObjectSize(Object objectToSize)
Returns an implementation-specific approximation
of the amount of storage consumed by the specified object.

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Core Java Interview Questions

Discuss about garbage collector in Java.

0 Answers   Agilent, Integreon, ZS Associates,


What is annotation in java?

0 Answers  


Is there any limitation of using inheritance?

0 Answers  


What is the concatenation operator in java?

0 Answers   Aspire, Infogain,


What are different types of classloaders?

0 Answers  






Can multiple catch statements be used in exceptions ?

6 Answers   Wipro,


What do you mean by local variable and instance variable?

0 Answers  


whatis Home interface and Remoteinterface? with example?

0 Answers   Saksoft,


What do negative exponents mean?

0 Answers  


How would you convert bytes to string?

0 Answers  


What is the flag in java?

0 Answers  


How can we make sure main() is the last thread to finish in java program?

0 Answers  


Categories