静态代码块
被static修饰的代码块称为静态代码块,这是一种存在于类中、成员方法外的静态代码块,其 中包括一系列可以执行的语句。静态代码块在类第一次被使用时执行,自始至终只会执行一次, 往往用来初始化静态变量。
代码如下
//静态代码块示例
public class StaticComponent {
static {
System.out.println("静态代码块");
}
{
System.out.println("非静态代码块");
}
public static void main(String[] args) {
StaticComponent a1 = new StaticComponent();
StaticComponent a2 = new StaticComponent();
}
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>