answersLogoWhite

0


Best Answer

Java does not have a sizeOf() operator and hence there is no way we can actually determine the size of a java class object. However we can analyze the overall heap space utilization to try to get an approximate indication of how much memory is used by an object but it is not accurate.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you find the size of a class object?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering
Related questions

Every class in derives from what class?

From the Object class.From the Object class.From the Object class.From the Object class.


How do you find the missing dimension?

To find a missing dimension of an object find the size of its covering properties.


What is class and objects?

class is template of object and object is instance of a class


What is object class in java?

object class is a super class for all other class...


What is the Object class parent?

Object is the topmost class in the Java Class hierarchy. There is no Class above Object. All classes in Java are implicitly derived from Object.


What class is the super class for ALL Java classes?

The Object class, in the java.lang package, sits at the top of the class hierarchy tree. Every class is a descendant, direct or indirect, of the Object class. Every class you use or write inherits the instance methods of Object. You need not use any of these methods, but, if you choose to do so, you may need to override them with code that is specific to your class


Size an object using mil dot?

The formula to dertermine the size of an object using mil dots is: Distance (in yards) x height (in mils) ----------------------------------------- = size of the object in yards 1000 to find out the size of the object in inches, simply multiply your answer by 36 (because there are 36 inches in a yard)


What is need of object in object oriented programming?

Object is an instant of the class, by using an object we can members of the class.


What is the size of a class object in c?

There are no classes let alone objects in C. It is not an object oriented language thus all data types are primitive types. C++ is object oriented. The size of an object is equal to the sum of the non-static class member attributes, including any padding bytes required for memory alignment purposes. The size of a class is equal to the sum of the static class member attributes, plus any padding bytes required for memory alignment purpose. To minimise the need for padding bytes within the class and within objects of the class, it is best to declare all class member attributes by order of size, largest first. However, static member attributes can be declared separately from non-static member attributes since the two are allocated separately in memory.


What is class hierarchies in java?

The top level class in Java is class Object. Every other class inherits from Object and therefore Object is the top most in the class hierarchy. If you extend a class from Object such as class Animal and further extend Animal with class Dog then the hierarchy is as follows: Object | Animal | Dog Code for this hierachy is as follows: class Animal { } class Dog extends Animal { } We don't need to write class Animal extends Object because every class extends from Object so it does not need to be stated.


Define the class object in vb?

A class is a blueprint or a detailed description of a real-world object. An object is an instantiation of a class into memory.


How can you differentiate a class from an object of a class?

A class is a collection of similar objects while an object is the individual instance of a class.