
class file
denverj
这个作者很懒,什么都没留下…
展开
-
JVM学习笔记-Class文件(Class File)
What is a Java Class File?The Java class file is a precisely defined binary file format for Java programs. Each Java class file represents a complete description of one Java class or i...原创 2011-11-05 14:39:47 · 244 阅读 · 0 评论 -
JVM学习笔记-字段(Fields)
Each field (class variable and instance variable) declared in a class or interface is described by a field_info table in the class file. The format of the field_info table is shown in Table 6...原创 2011-11-07 11:17:08 · 220 阅读 · 0 评论 -
JVM学习笔记-方法(Methods)
MethodsEach method declared in a class or interface or generated by the compiler is described in the class file by a method_info table. The two types of compiler-generated methods that ma...原创 2011-11-07 11:25:30 · 177 阅读 · 0 评论 -
JVM学习笔记-属性(Attributes)
AttributesAs mentioned above, attributes appear in several places inside a Java class file. They can appear in the ClassFile, field_info, method_info, and Code_attribute tables. The Code_at...原创 2011-11-07 12:03:33 · 302 阅读 · 0 评论 -
JVM学习笔记-属性格式(Attributes Types)
AttributesThe Java Virtual Machine specification defines eight types of attributes, shown in Table 6-25. All Java Virtual Machine implementations must recognize three of these attributes:...原创 2011-11-07 12:15:44 · 197 阅读 · 0 评论