Java(静态)变量、(静态)代码块、构造方法的执行顺序

总结
1、父类静态变量和静态代码块(先声明的先执行);
2、子类静态变量和静态代码块(先声明的先执行);
3、父类的变量和代码块(先声明的先执行);
4、父类的构造方法;
5、子类的变量和代码块(先声明的先执行);
6、子类的构造方法。
注意事项
1、非静态代码块于构造方法之前执行,并且每次实例化对象之前都会先执行非静态代码块,静态代码块于非静态代码块之前执行;
2、在类第一次被调用时,加载该类,静态代码块只执行一次;
3、静态代码块只能调用静态变量,静态方法只能调用静态变量;
4、非静态代码块或非静态方法可以调用任何(静态+非静态)变量;
5、非静态代码块在实例化对象时,于构造方法之前执行。

参考代码 1

class HelloA {
public HelloA() {
System.out.println("HelloA");
} {
System.out.println("I'm A class");
} static {
System.out.println("static A");
}
} public class HelloB extends HelloA {
public HelloB() {
System.out.println("HelloB");
} {
System.out.println("I'm B class");
} static {
System.out.println("static B");
} public static void main(String[] args) {
new HelloB();
}
}

运行结果

```
static A
static B
I'm A class
HelloA
I'm B class
HelloB
```

参考代码 2

class A {
public A() {
System.out.println("HelloA");
} {
System.out.println("I'm A class");
} static {
System.out.println("static A");
}
} public class B extends A {
public B() {
System.out.println("HelloB");
} {
System.out.println("I'm B class");
} static {
System.out.println("static B");
} public static void main(String[] args) {
new B();
}
}

运行结果

```
static A
static B
I'm A class
HelloA
I'm B class
HelloB
```

参考代码 3

class A {
static {
System.out.print("1");
} public A() {
System.out.print("2");
}
} class B extends A {
static {
System.out.print("a");
} public B() {
System.out.print("b");
}
} public class Hello {
public static void main(String[] args) {
new B();
new B();
}
}

运行结果

```
1a2b2b
```

参考代码 4

public class HelloA {
static {
System.out.println("static A");
} {
System.out.println("I'm A class");
} public HelloA() {
System.out.println("HelloA");
} public HelloA(String s) {
System.out.println(s + "HelloA");
} public static void main(String[] args) {
new HelloB();
}
} class HelloB extends HelloA {
public HelloB() {
// 只能调用一次父类的构造方法,如果不写,Java 编译器会自动调用无参的构造方法。
// super();
super("parent");
System.out.println("HelloB");
} {
System.out.println("I'm B class");
} static {
System.out.println("static B");
}
}

运行结果

```
static A
static B
I'm A class
parentHelloA
I'm B class
HelloB
```

参考代码 5

public class People {
String name; public People() {
System.out.println(1);
} public People(String name) {
System.out.println(2);
this.name = name;
}
} class Child extends People {
People father; public Child() {
// super(); // 系统默认调用父类的无参构造方法
System.out.println(4);
} public Child(String name) {
// super(); // 系统默认调用父类的无参构造方法
System.out.println(3);
this.name = name;
father = new People(name + ":F");
System.out.println(father.name);
} public static void main(String[] args) {
new Child();
// new Child("mike");
}
}

运行结果

```
1
4
```

参考代码 6

public class People {
String name; public People() {
System.out.println(1);
} public People(String name) {
System.out.println(2);
this.name = name;
}
} class Child extends People {
People father; public Child() {
// super(); // 系统默认调用父类的无参构造方法
System.out.println(4);
} public Child(String name) {
// super(); // 系统默认调用父类的无参构造方法
System.out.println(3);
this.name = name;
father = new People(name + ":F");
System.out.println(father.name);
} public static void main(String[] args) {
// new Child();
new Child("mike");
}
}

运行结果

```
1
3
2
mike:F
```

参考代码 7

public class ExA {
private static ExA a = new ExA(); static {
System.out.println("父类---静态代码块");
} public ExA() {
System.out.println("父类---构造方法");
} {
System.out.println("父类---非静态代码块");
} public static void main(String[] args) {
new ExB();
}
} class ExB extends ExA {
private static ExB b = new ExB(); static {
System.out.println("子类---静态代码块");
} {
System.out.println("子类---非静态代码块");
} public ExB() {
System.out.println("子类---构造方法");
}
}

运行结果

```
父类---非静态代码块
父类---构造方法
父类---静态代码块
父类---非静态代码块
父类---构造方法
子类---非静态代码块
子类---构造方法
子类---静态代码块
父类---非静态代码块
父类---构造方法
子类---非静态代码块
子类---构造方法
```

参考代码 8

class Foo {
public Foo(String word) {
System.out.println(word);
}
} class Parent {
static Foo FOO = new Foo("Parent's static parameter"); Foo foo = new Foo("Parent's parameter"); static {
System.out.println("Parent's static code block");
} {
System.out.println("Parent's code block");
} public Parent() {
System.out.println("Parent.Parent()");
}
} public class Child extends Parent {
static Foo FOO = new Foo("Child's static parameter"); Foo foo = new Foo("Child's parameter"); static {
System.out.println("Child's static code block");
} {
System.out.println("Child's code block");
} public Child() {
System.out.println("Child.Child()");
} public static void main(String[] args) {
new Child();
}
}

运行结果

```
Parent's static parameter
Parent's static code block
Child's static parameter
Child's static code block
Parent's parameter
Parent's code block
Parent.Parent()
Child's parameter
Child's code block
Child.Child()
```

参考代码 9

public class GFG {
public GFG(int x) {
System.out.println("ONE argument constructor");
} public GFG() {
System.out.println("No argument constructor");
} static {
System.out.println("1st static init");
} {
System.out.println("1st instance init");
} {
System.out.println("2nd instance init");
} static {
System.out.println("2nd static init");
} public static void main(String[] args) {
new GFG();
new GFG(8);
}
}

运行结果

```
1st static init
2nd static init
1st instance init
2nd instance init
No argument constructor
1st instance init
2nd instance init
ONE argument constructor
```

参考代码 10

class MyTest {
static {
initialize();
} private static int sum; public static int getSum() {
initialize();
return sum;
} private static boolean initialized = false; private static void initialize() {
if (!initialized) {
for (int i = 0; i < 100; i++)
sum += i;
initialized = true;
}
}
} public class GFG {
public static void main(String[] args) {
System.out.println(MyTest.getSum());
}
}

运行结果

```
9900
```

参考代码 11

class MyTest {
static {
initialize();
} private static int sum = 0; public static int getSum() {
initialize();
return sum;
} private static boolean initialized = false; private static void initialize() {
if (!initialized) {
for (int i = 0; i < 100; i++)
sum += i;
initialized = true;
}
}
} public class GFG {
public static void main(String[] args) {
System.out.println(MyTest.getSum());
}
}

运行结果

```
4950
```

参考代码 12

class MyTest {
static {
initialize();
} private static int sum = 0; public static int getSum() {
initialize();
return sum;
} private static boolean initialized; private static void initialize() {
if (!initialized) {
for (int i = 0; i < 100; i++)
sum += i;
initialized = true;
}
}
} public class GFG {
public static void main(String[] args) {
System.out.println(MyTest.getSum());
}
}

运行结果

```
0
```

参考代码 13

class MyTest {
static {
initialize();
} private static int sum; public static int getSum() {
initialize();
return sum;
} private static boolean initialized; private static void initialize() {
if (!initialized) {
for (int i = 0; i < 100; i++)
sum += i;
initialized = true;
}
}
} public class GFG {
public static void main(String[] args) {
System.out.println(MyTest.getSum());
}
}

运行结果

```
4950
```

10-13 题解析

解析:[https://www.cnblogs.com/javaee6/p/3714716.html](https://www.cnblogs.com/javaee6/p/3714716.html)

参考资料

Java(静态)变量、(静态)代码块、构造方法的执行顺序的更多相关文章

  1. java学习(一)静态代码块 构造代码块 构造方法的执行顺序及注意问题

    今天我总结了一下java中静态代码块 构造代码块 构造方法的执行顺序及其注意问题 首先要知道静态代码块是随着类的加载而加载,而构造代码块和构造方法都是随着对象的创建而加载 当时做了这么一个小案例(想必 ...

  2. Java面试题 静态代码块 构造代码块 构造方法 的执行顺序

    JAVA中的静态代码块 构造代码块 构造方法执行顺序: 静态代码块(类加载时执行)>>构造代码块>>构造方法 下面展示一个简单的例子,推荐大家动手运行一遍: public cl ...

  3. java:构造方法:无参构造/有参构造 this static关键字 静态变量 静态方法 代码块 封装 静态常量。

    /*构造方法是一种特殊的方法,专门用于构造/实例化对象,形式:[修饰符] 类名(){ }构造方法根据是否有参数分为无参构造和有参构造*/public class Dog {               ...

  4. Java静态代码块、代码块及构造函数执行顺序

    根据以下程序进行分析 定义一个父类 package sas.LearnJava; public class ExcuteOrderTest { { System.out.println("我 ...

  5. java中成员变量、代码块、构造函数运行顺序

    1.java虚拟机执行程序,首先须要装载类,安装现装载父类,初始化父类的静态代码块和静态成员变量 再load子类. 初始化子类静态代码块和成员变量 2.load完成父类与子类后,从main函数入口运行 ...

  6. Java面向对象理解_代码块_继承_多态_抽象_接口

    面线对象: /* 成员变量和局部变量的区别? A:在类中的位置不同 成员变量:在类中方法外 局部变量:在方法定义中或者方法声明上 B:在内存中的位置不同 成员变量:在堆内存 局部变量:在栈内存 C:生 ...

  7. java类成员变量与代码块初始化

    首先根据下面的这个一段代码:引入关于java初始化顺序的问题public class InitationTest extends Person { public InitationTest() { S ...

  8. 【Java基础】继承中的代码块和构造方法的执行顺序探索

    本文讲述有关一个类的静态代码块,构造代码块,构造方法的执行流程问题.首先来看一个例子 /** * Created by lili on 15/10/19. */ class Person{ stati ...

  9. No.4.测试子类继承父类各代码块和构造方法的执行顺序

    Son子类 public class Son extends Parent { static String y ="son的static属性"; public static voi ...

随机推荐

  1. 「Python-Django」django 实现将本地图片存入数据库,并能显示在web上

    1. 将图片存入数据库 关于数据库基本操作的学习,请参见这一篇博客:https://www.cnblogs.com/leejy/p/6745186.html 这里我默认,您已经会了基本操作,能在数据库 ...

  2. linux shell学习五

    参考:https://www.linuxdaxue.com/ Shell函数 因为函数是脚本类语言,在执行时是逐行执行的,因此,Shell 函数必须先定义后使用. Shell 函数的定义格式如下: [ ...

  3. 前端PHP入门-012-回调函数[慎入]

    尽力而为,对于WEB前端和美工同学,比较难了!但是你们都学过JS的闭包等操作,那么这里也一定没有问题! 回调函数,可以配合匿名函数和变量函数实现更加优美.复杂的一种函数结构. 回调函数,就是在处理一个 ...

  4. 关闭eclipse自动弹出console功能

    使用eclipse时经常会用到最大化窗口,而如果此时是开着tomcat等服务的话,一段后台有打印什么东西出来都会自己弹出 console挺烦人的.可以使用以下操作关闭这个功能. Preferences ...

  5. Anaconda更换版本方式

    Conda的环境管理 Conda的环境管理功能允许我们同时安装若干不同版本的Python,并能自由切换.假设我们需要安装Python 3.6,此时,我们需要做的操作如下: # 创建一个名为python ...

  6. Codeforces Round #191 (Div. 2) B. Hungry Sequence(素数筛选法)

    . Hungry Sequence time limit per test 1 second memory limit per test 256 megabytes input standard in ...

  7. sublime text3 编辑器常用快捷键

    选择类 Ctrl+D 选中光标所占的文本,继续操作则会选中下一个相同的文本. Alt+F3 选中文本按下快捷键,即可一次性选择全部的相同文本进行同时编辑.举个栗子:快速选中并更改所有相同的变量名.函数 ...

  8. Ubuntu 14.04 安装Visual studio Code

    上一篇简单介绍了Ubuntu 14.04上如何创建.运行 hello world 程序. 这篇介绍Ubuntu 14.04如何安装Visual studio Code. 网上推荐的有通过Ubuntu ...

  9. es6新语法Object.assign()

    1.介绍 Object.assign用于对象的合并,将源对象的所有可枚举属性复制到目标对象,只拷贝源对象自身的属性继承属性补考呗 Object.assign(target,source1,...)第一 ...

  10. 一个TCP报文段的数据部分最多为多少个字节,为什么

    IP数据报的最大长度=2^16-1=65535(字节)TCP报文段的数据部分=IP数据报的最大长度-IP数据报的首部-TCP报文段的首部=65535-20-20=65495(字节) 一个tcp报文段的 ...