Java入门之了解JVM(15)

public static int bbb = 2;

?

public HiJvm(){

System.out.println("construct method");

}

static {

System.out.println("static code area2");

}

?

}

。。。省略

{

public static int aaa;

descriptor: I

flags: ACC_PUBLIC, ACC_STATIC

?

public static int bbb;

descriptor: I

flags: ACC_PUBLIC, ACC_STATIC

?

推荐阅读