代码块的作用:
    类或对象的初始化

    代码块的分类:
    静态代码块
    非静态代码块

    static代码块永昌用于初始化static属性

    1. class Person{
    2. public static int total;
    3. static{
    4. total = 100;//为total赋初始值
    5. }
    6. }