`

程序运行结果1

 
阅读更多

/**
 * 构造方法是  是被实例化的时候才调用的
 * 继承父类  等于实例化父类
 * @author zx
 *
 */
public class A {
 public A(){
  System.out.println("------A-------");
 }
 public static void main(String[] args) {
  new Child();
       //  System.out.println(new Child());  
     }
 
}
class Parent {  
    public  Parent() {  
        System.out.println("----Parent----");  
    }  
}  
class Child extends Parent {  
    public Child() {  
        System.out.println("----Child-----");  
    }  
    Brother b = new Brother();  
}  
 class Brother {  
    public Brother(){  
        System.out.println("----Brother----");  
    }  
}  

运行结果:

----Parent----
----Brother----
----Child-----

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics