比思論壇
標題:
Java对象初始化大全
[打印本頁]
作者:
peixiaokun
時間:
2012-2-8 08:43
標題:
Java对象初始化大全
Java对象
class A{
{show(0);}
int x=1;
{show(1);}
A(){x=2;}
void show(int label){}
}
class B extends A{
{show(2);}
int y=1;
{show(3);}
B(){y=2;}
void show(int label){
System.out.println(label+": x="+x+" y="+y);
}
}
public class C{
public static void main(String[] args){
new B()。show(4);
}
}
输出:
=================================================
0: x=0 y=0
1: x=1 y=0
2: x=2 y=0
3: x=2 y=1
4: x=2 y=2
说明了初始化的顺序:
0. 为基类和子类的成员分配存储空间
1. 基类成员赋初值
2. 基类构造函数
3. 子类成员赋初值
4. 子类构造函数
作者:
gannimm
時間:
2012-2-15 10:14
教学吗?看不懂
歡迎光臨 比思論壇 (http://bbb-ccc.site/)
Powered by Discuz! X2.5