标签:public 静态 static stat 创建对象 name sys ring str
类:
public class Student {
int age;
String name;
boolean sex;
public Student(){
age=10;
name="Xu";
sex=false;
}
static{
System.out.println("This is a static block");
}
{
System.out.println("这是一个代码块");
}
}
调用函数:
public class Student_test {
public static void main(String[] args) {
Student student1= new Student();
Student student2= new Student();
Student student3= new Student();
Student student4= new Student();
}
}
输出结果:
This is a static block
这是一个代码块
这是一个代码块
这是一个代码块
这是一个代码块
创建了4个对象,但是static块只执行一次,而代码块,每次创建对象,都会被执行。
标签:public 静态 static stat 创建对象 name sys ring str
原文地址:https://www.cnblogs.com/heenhui2016/p/10960809.html