• Java 静态语句块、语句块、构造函数执行顺序


    class Parent{    
        static String name = "hello";    
        
        {    
            System.out.println("3 parent  block");    
        }    
        static {    
            System.out.println("1 parent static block");    
        }    
        
        public Parent(){    
            System.out.println("4 parent constructor");    
        }    
    }    
        
    class Child extends Parent{    
        static String childName = "hello";    
        
        {    
            System.out.println("5 child  block");    
        }    
        static {    
            System.out.println("2 child static block");    
        }  
        
        public Child(){    
            System.out.println("6 child constructor");    
        }    
    }    
        
    public class StaticIniBlockOrderTest {    
        
        public static void main(String[] args) {    
            new Child();//语句(*)    
        }    
    }    

    结果:

    1 parent static block
    2 child static block
    3 parent block
    4 parent constructor
    5 child block
    6 child constructor

    2. 顺序:

       1)执行父类静态的内容,父类静态的内容执行完毕后,接着去执行子类的静态的内容;

       2)当子类的静态内容执行完毕之后,再去看父类有没有非静态代码块,如果有就执行父类的非静态代码块,父类的非静态代码块执行完毕,接着执行父类的构   造方法;

      3)父类的构造方法执行完毕之后,它接着去看子类有没有非静态代码块,如果有就执行子类的非静态代码块。子类的非静态代码块执行完毕再去执行子类的构造方法。

    总之一句话,静态代码块内容先执行,接着执行父类非静态代码块和构造方法,然后执行子类非静态代码块和构造方法。
    而且子类的构造方法,不管这个构造方法带不带参数,默认的它都会先去寻找父类的不带参数的构造方法。如果父类没有不带参数的构造方法,那么子类必须用supper关键子来调用父类带参数的构造方法,否则编译不能通过。

  • 相关阅读:
    01背包问题需要找出相应路径
    单链表的正序输出和逆序输出
    二叉树之叶子节点个数
    01背包问题
    STL之map和multimap(关联容器)
    python的tips:字符和字符串的问题
    postman的使用(转载)
    python tips(3);import的机制
    python每日一类(5):itertools模块
    python每日一类(4):slice
  • 原文地址:https://www.cnblogs.com/jycboy/p/5257615.html
Copyright © 2020-2023  润新知