1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

Update 类文件结构.md

This commit is contained in:
hailong.sha 2020-11-21 16:10:06 +08:00
parent abec92e6e5
commit 14f59253ec

View File

@ -183,7 +183,7 @@ public class Employee {
method_info methods[methods_count];//一个类可以有个多个方法
```
methods_count 表示方法的数量,而 method_info 表示方法表。
methods_count 表示方法的数量,而 method_info 表示方法表。
Class 文件存储格式中对方法的描述与对字段的描述几乎采用了完全一致的方式。方法表的结构如同字段表一样,依次包括了访问标志、名称索引、描述符索引、属性表集合几项。