汗,我又来了
- class Fu
- {
- Fu()
- {
- System.out.println("fu run");
- }
- //这里定义的数接收的是子类中super传递的值,故可以定义成任何变量名.
- Fu(int y)
- {
- System.out.println("fu...****..."+y);
- }
- }
- class Zi extends Fu
- {
- Zi()
- {
-
- //super();
- System.out.println("zi run");
- }
- Zi(int x)
- {
- super(x); //问题是这里为什么只能写super(x)而不能写super(int x)??????
- /*
- new Zi(4)=>Zi(int x)
- |
- super(x)=>Fu(int x)
- 建立Zi(4)对象后,将4作为实际参数传给子类构造函数中的x,之后x传递给super中的x
- super(x)就相当于Fu(int x),将4传给父类构造函数中的y
-
- */
- System.out.println("zi..."+x);
- }
- }
- class ExtendsDemo2
- {
- public static void main(String[] args)
- {
- Zi z = new Zi();
- Zi z1= new Zi(4);
- }
- }
复制代码 |