A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

© 代码人生?! 中级黑马   /  2016-5-5 20:01  /  410 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package com.itheima.stu.exam;
/*
*结果:Y1X1W1Z1
**/
class X1 {
       Y1b =new Y1();
       X1(){
              //System.out.println(this.getClass().getSimpleName()+"------------------");
              System.out.println("X1");
       }
       static{
              System.out.println("加载X1类");
       }
}
class Y1 {
       Y1(){
              //System.out.println(this.getClass().getSimpleName()+"...............");
              System.out.println("Y1");
       }
}
class W1 {
       W1(){
              //System.out.println(this.getClass().getSimpleName()+"...............");
              System.out.println("W1");
       }
}
publicclass Z1 extends X1 {
       W1w1 =new W1();
       Z1(){
              super();
              System.out.println("Z1");
       }
       publicstaticvoid main(String[] args){
              new Z1();
       }
       static{
              System.out.println("加载Z1类");
       }
}


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马