class Abc {
}
Suppose this is my class and I want to know the size the of that class. How can I calculate the size of a class created in Java. Even if I create an object of that particular class.
class Abc {
}
Suppose this is my class and I want to know the size the of that class. How can I calculate the size of a class created in Java. Even if I create an object of that particular class.
If you want to know the memory size of the files you've created, you can go to your project's folder directory. There, in "src" folder, you can right-click any .java file and see its size. In the "bin" folder, there are also the binary .class files. Feel free to compare them.