You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pencilcheck edited this page Apr 26, 2012
·
1 revision
Java class file structure
Java class files contains the java class representation in bytecode, it has lots of fields but there are only a few you should care about.
The first thing is accessFlags, this defines the visibility of a class to other classes.
Constant Pool is a pool of constants appear in the class such as String, Class name, function call name, method refs, field refs, etc that are used for references.