代码块的作用:类或对象的初始化 代码块的分类:静态代码块非静态代码块 static代码块永昌用于初始化static属性 class Person{ public static int total; static{ total = 100;//为total赋初始值 }}