下列程序的运行结果是(  )。

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. 程序有错误

【答案】

【解析】

请联系我 商务合作、广告投放、题目勘误、侵权投诉

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部