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 · 286 阅读 · 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 · 249 阅读 · 0 评论 -
JVM学习笔记-方法(Methods)
Methods Each 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 · 208 阅读 · 0 评论 -
JVM学习笔记-属性(Attributes)
Attributes As 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 · 348 阅读 · 0 评论 -
JVM学习笔记-属性格式(Attributes Types)
Attributes The 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 · 219 阅读 · 0 评论
分享