代码块的概述
在Java中,单使用{ }括起来的代码叫做代码块
代码块的分类
根据其位置和声明的不同,可以分为局部代码块,构造代码块,静态代码块,同步代码块
代码块的应用
局部代码块:在方法中出现;限定变量生命周期,及早释放,提高内存利用率
构造代码块(初始化块):在类中方法外出现;多个构造方法方法中相同的代码存放到一起,每次调用构造都执行,并且在构造方法前执行
静态代码块:在类中方法外出现,并加上static修饰;用于给类进行初始化,在加载的时候就执行,并且只执行一次。
class Student{
static{
System.out.println("Student静态代码块");
}
{
System.out.println("Student构造代码块");
}
publicStudent() {
System.out.println("Student构造方法");
}
}
classDemo2_Student {
static{
System.out.println("Demo2_Student静态代码块");
}
publicstatic void main(String[] args) {
System.out.println("我是main方法");
Students1 = new Student();
Students2 = new Student();
}
}
*一般用于加载驱动