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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 杜佳瑞 中级黑马   /  2012-7-27 20:32  /  1710 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 杜佳瑞 于 2012-7-27 23:06 编辑

网上看到的变量,初始化块,构造函数的初始化顺序,看完后这类题就噢啦
网址http://blog.csdn.net/macheng365/article/details/6403050
class A{  
    private int i = 9;  
    protected static int j;  
    static{  
        System.out.println("-- Load First SuperClass of static block start!-- ");  
        System.out.println("j = " + j);  
        System.out.println("-- Load First SuperClass of static block End  -- ");  
    }  
      
    public A(){  
        System.out.println("------- Load SuperClass of structor start --------");  
        System.out.println("Frist print j = " + j);  
        j = 10;  
        m();  
        System.out.println("k = " + k);  
        System.out.println("Second print j = " + j);  
        System.out.println("-----------  Load  SuperClass End    ----------- ");  
    }  
      
    private static int k = getInt();  
         
    public static int getInt(){  
        System.out.println("Load SuperClass.getInt() ");  
        return 11;  
    }   
    static{  
        System.out.println("--- Load Second SuperClass of static block!-------");  
        System.out.println("j = " + j);  
        System.out.println("k = " + k);  
        System.out.println("-- Load Second SuperClass of static block End -- ");  
    }  
      
    public void m(){  
        System.out.println("SuperClass.m() , " + "j = " +j);  
         
    }  
}  
  
class B extends A {  
    private  int a = 10;  
      
    static{  
        System.out.println("---- Load SubClass of static block!------");  
        System.out.println("-- Load SubClass of static block End -- ");  
    }  
      
    public B(){  
        System.out.println("Load SubClass of structor");  
        m();  
        System.out.println("---   Load SubClass End  ---- ");  
    }  
      
    public void m(){  
        System.out.println("SubClass.m() ," + "a = " + a );  
    }  
}  
  
public class Test1{  
    public static void main(String[] args)
        {  
        A a = new B();  
    }  
}  
正确的答案为:  
-- Load First SuperClass of static block start!--   
j = 0  
-- Load First SuperClass of static block End  --  
Load SuperClass.getInt()  
--- Load Second SuperClass of static block!-------  
j = 0  
k = 11  
-- Load Second SuperClass of static block End --  
---- Load SubClass of static block!------  
-- Load SubClass of static block End --  
------- Load SuperClass of structor start --------  
Frist print j = 0  
SubClass.m() ,a = 0  
k = 11  
Second print j = 10  
-----------  Load  SuperClass End    -----------  
Load SubClass of structor  
SubClass.m() ,a = 10  
---   Load SubClass End  ----  

2 个回复

倒序浏览
楼主看清楚啊,
-- Load First SuperClass of static block start!--   
j = 0  
-- Load First SuperClass of static block End  --  
Load SuperClass.getInt()  --- Load Second SuperClass of static block!-------  
j = 0  
k = 11  
-- Load Second SuperClass of static block End --  
---- Load SubClass of static block!------  
-- Load SubClass of static block End --  
------- Load SuperClass of structor start --------  
Frist print j = 0  
SubClass.m() ,a = 0  
k = 11  
Second print j = 10  
-----------  Load  SuperClass End    -----------  
Load SubClass of structor  
SubClass.m() ,a = 10  
---   Load SubClass End  ----  
回复 使用道具 举报
class A{  
    private int i = 9;  
    protected static int j;  
    static{  
        System.out.println("-- Load First SuperClass of static block start!-- ");  
        System.out.println("j = " + j);  
        System.out.println("-- Load First SuperClass of static block End  -- ");  
    }  
      //一个类如果有,静态代码块,构造代码块,构造函数。他执行顺序是先执行所有的"静 态代码块"-->构造代码块-->构造函数。
     //静态代码块:是个给类初始化,随类的加载而加载
    //构造代码块:是给所有对象初始化的
    //构造函数:是给对应对象进行针对性的初始化
    //当子类创建对象时,子类的构造函数会访问父类的构造函数,访问父类的构造函数时,会加载整个类。所以会先执行父类的所有静态代码块。
    public A(){  
        System.out.println("------- Load SuperClass of structor start --------");  
        System.out.println("Frist print j = " + j);  
        j = 10;  
        m();  
        System.out.println("k = " + k);  
        System.out.println("Second print j = " + j);  
        System.out.println("-----------  Load  SuperClass End    ----------- ");  
    }  
      
    private static int k = getInt();  //调用getInt方法。他有一个返回值,把返回值赋值给k,k是这个时候赋值的
         
    public static int getInt(){  
        System.out.println("Load SuperClass.getInt() ");  //这句话已经打印了。楼主你看清楚。
        return 11;  
    }   
    static{  
        System.out.println("--- Load Second SuperClass of static block!-------");  
        System.out.println("j = " + j);  
        System.out.println("k = " + k);  
        System.out.println("-- Load Second SuperClass of static block End -- ");  
    }  
      
    public void m(){  
        System.out.println("SuperClass.m() , " + "j = " +j);  
         
    }  
}  
  
class B extends A {  
    private  int a = 10;  
      
    static{  
        System.out.println("---- Load SubClass of static block!------");  
        System.out.println("-- Load SubClass of static block End -- ");  
    }  
      
    public B(){  
        System.out.println("Load SubClass of structor");  
        m();  
        System.out.println("---   Load SubClass End  ---- ");  
    }  
      
    public void m(){  
        System.out.println("SubClass.m() ," + "a = " + a );  
    }  
}  
  
public class Test1{  
    public static void main(String[] args)
        {  
        A a = new B();  
    }  
}  
正确的答案为:  
-- Load First SuperClass of static block start!--   
j = 0  
-- Load First SuperClass of static block End  --  
Load SuperClass.getInt()  
--- Load Second SuperClass of static block!-------  
j = 0  
k = 11  
-- Load Second SuperClass of static block End --  
---- Load SubClass of static block!------  
-- Load SubClass of static block End --  
------- Load SuperClass of structor start --------  
Frist print j = 0  
SubClass.m() ,a = 0  
k = 11  
Second print j = 10  
-----------  Load  SuperClass End    -----------  
Load SubClass of structor  
SubClass.m() ,a = 10  
---   Load SubClass End  ----
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马