Content deleted Content added
Line 29:
//the constant pool table
cp_info constant_pool[constant_pool_count - 1];
u2 access_flags;
Line 34 ⟶ 35:
u2 this_class;
u2 super_class;
u2 interfaces_count; //unsigned, 2 byte (16 bit) number
Line 42 ⟶ 44:
//the table of superinterfaces of this class
u2 interfaces[interfaces_count];
u2 fields_count; //unsigned, 2 byte (16 bit) number
Line 49 ⟶ 52:
//the table of fields of this class
field_info fields[fields_count];
u2 methods_count; //unsigned, 2 byte (16 bit) number
Line 56 ⟶ 60:
//the table of methods of this class
method_info methods[methods_count];
u2 attributes_count; //unsigned, 2 byte (16 bit) number
|