Java class file format:修订间差异

来自WHY42
imported>Soleverlee
无编辑摘要
imported>Soleverlee
无编辑摘要
第1行: 第1行:
Java文件编译成class字节码后,其结构如下:
Java文件编译成class字节码后,其结构如下:


[[Image:Jvm_class_format.png|600px]]
[[Image:Jvm_class_format.png|400px]]


Java的类型描述:
Java的类型描述:
<source lang="python">
<source lang="java">
Java type Type descriptor
//Java type Type descriptor
boolean Z
boolean Z
char C
char C

2016年5月10日 (二) 08:07的版本

Java文件编译成class字节码后,其结构如下:

Java的类型描述:

//Java type Type descriptor
boolean Z
char C
byte B
short S
int I
float F
long J
double D
Object Ljava/lang/Object;
int[] [I
Object[][] [[Ljava/lang/Object;