这个程序为什么编译通不过?(关于构造函数调用的问题)
class Example
{
String str;
public Example()
{
str= "example";
}
public Example(String s)
{
str=s;
}
}
class Demo extends Example
{
}
class Test
{
public void f ()
{
Example ex = new Example("Good");
Demo d = new Demo("Good");//就是这里说找不到符号。
}
public static void main(String args[])
{
new Test().f();
}
}
错误提示:找不到符号。
谁知道为什么呀?
[此贴子已经被作者于2006-4-16 9:55:15编辑过]