标题:继承的问题
取消只看楼主
chengsencs
Rank: 1
等 级:新手上路
帖 子:109
专家分:0
注 册:2006-7-24
 问题点数:0 回复次数:1 
继承的问题

这个程序:
public class ConstructorTest
{
public static void main(String[] args)
{
C c= new C("hello");
}
}

class A
{
public A()
{
System.out.println("this is A");
}
}

class B extends A
{
public B(String str)
{
System.out.println("this is B");
}
}

class C extends B
{
public C(String str)
{
super(str);
System.out.println("this is C");
}
}
书上说C进行实例化的时候,先对A、B进行实例化。又说因为B中没有默认构造函数,所以要加 super(str);
说是这表示调用B的有参构造函数。
我不明白的是“A中是无参构造函数,由于C中多了 super(str);
,所以无法调用A中的无参构造函数,所以无法对A进行实例化。”
为什么是错误的说法。

搜索更多相关主题的帖子: 继承 
2006-12-09 22:53
chengsencs
Rank: 1
等 级:新手上路
帖 子:109
专家分:0
注 册:2006-7-24
得分:0 
不好意思各位,这个问题我明白了。还有一个新问题:

B b= new C();
是什么意思?
生成的是谁的对象?
为什么不是
C c= new C();或
B b= new B();呢?

谢谢。
2006-12-09 23:36



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-108463-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.061416 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved