有一些情况下,有些代码需要在项目启动的时候就执行,则需要使用静态代码块,这种代码是主动执行的。
Java中的静态代码块是在虚拟机加载类的时候,就执行的,而且只执行一次。如果static代码块有多个,JVM将按照它们在类中出现的先后顺序依次执行它们,每个代码块只会被执行一次。 代码的执行顺序:
  1. 主调类的静态代码块
  2. 对象父类的静态代码块
  3. 对象的静态代码块
  4. 对象父类的非静态代码块
  5. 对象父类的构造函数
  6. 对象的非静态代码块
  7. 对象的构造函数
//静态代码块
static{
...;
} //静态代码块
{
...;
} 代码举例:
 package staticblock;

 public class StaticBlockTest {
//主调类的非静态代码块
{
System.out.println("StaticBlockTest not static block");
} //主调类的静态代码块
static {
System.out.println("StaticBlockTest static block");
} public StaticBlockTest() {
System.out.println("constructor StaticBlockTest");
} public static void main(String[] args) {
// 执行静态方法前只会执行静态代码块
Children.say();
System.out.println("----------------------"); // 全部验证举例
Children children = new Children();
children.getValue();
}
} /**
* 父类
*/
class Parent { private String name;
private int age; //父类无参构造方法
public Parent() {
System.out.println("Parent constructor method");
{
System.out.println("Parent constructor method--> not static block");
}
} //父类的非静态代码块
{
System.out.println("Parent not static block");
name = "zhangsan";
age = 50;
} //父类静态代码块
static {
System.out.println("Parent static block");
} //父类有参构造方法
public Parent(String name, int age) {
System.out.println("Parent constructor method");
this.name = "lishi";
this.age = 51;
} public String getName() {
return name;
} public void setName(String name) {
this.name = name;
} public int getAge() {
return age;
} public void setAge(int age) {
this.age = age;
}
} /**
* 子类
*/
class Children extends Parent {
//子类静态代码块
static {
System.out.println("Children static block");
} //子类非静态代码块
{
System.out.println("Children not static block");
} //子类无参构造方法
public Children() {
System.out.println("Children constructor method");
} public void getValue() {
//this.setName("lisi");
//this.setAge(51);
System.out.println(this.getName() + " " + this.getAge());
} public static void say() {
System.out.println("子类静态方法执行!");
}
}

执行结果:

StaticBlockTest static block
Parent static block
Children static block
子类静态方法执行!
----------------------
Parent not static block
Parent constructor method
Parent constructor method--> not static block
Children not static block
Children constructor method
zhangsan 50

  

详细:http://uule.iteye.com/blog/1558891


05-11 02:51