下列程序的运行结果是( )。
class Shape{
public Shape()\{<br>
System.out.print("Shape");<br>
\}<br>
}
class Circle extends Shape{
public Circle()\{<br>
System.out.print("Circle");<br>
\}<br>
}
public class Test{
public static void main(String[]args)\{<br>
Shape d=new Circle();<br>
\}<br>
}
A. Shape
B. Circle
C. ShapeCircle
D. 程序有错误
【答案】
【解析】
发表评论 取消回复