黑马程序员技术交流社区

标题: 对象构造过程 [打印本页]

作者: as604049322    时间: 2014-12-10 12:29
标题: 对象构造过程
本帖最后由 as604049322 于 2014-12-10 12:31 编辑

对象构造过程构造子类之前必须调用父类,且构造块会构造函数之前执行

  1. public class A {  

  2.         static{  
  3.                 System.out.println("A static block");  
  4.       }  
  5.          
  6.       public A() {  
  7.               super();  
  8.                 System.out.println("A constructor");  
  9.         }  
  10.         
  11.       {  
  12.               System.out.println("A not static block"+this);  
  13.       }  
  14. }
复制代码


B类:
  1. public class B extends A{  
  2.       static{  
  3.               System.out.println("B static block");  
  4.       }  
  5.         
  6.       public B() {  
  7.                 super();  
  8.               System.out.println("B constructor");  
  9.       }  
  10.         
  11.       {  
  12.               System.out.println("B not static block");  
  13.         }  
  14.         
  15.         public static void main(String[] args) {  
  16.                 new B();  
  17.         }  
  18. }
复制代码


结果:
  1. [*]A static block  
  2. [*]B static block  
  3. [*]A not static blockB@a90653  
  4. [*]A constructor  
  5. [*]B not static block  
  6. [*]B constructor  

复制代码








欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2