请在 下方输入 要搜索的题目:

请根据注释将以下程序画横线处补充完整。 ____class Shape {//定义一个抽象类Shape public int width,height; public ____(int width, int height){ this.width=width; ____.height =height; } abstract double getArea(); //求图形面积的抽象方法 } class Square ____ Shape {//从抽象类Shape继承的子类--矩形类 public double ____() { //求图形面积的抽象方法 return width*height; } public Square(int width, int height){ ____(width,height); } } public class TestAbstractClass1{ public static void main(String[] args){ Shape box=new Square(25,25); System.out.println("box Area:"+box.getArea()); } }

发布时间:2024-04-17 09:52:00
推荐参考答案 ( 由 搜题小帮手 官方老师解答 )
联系客服
答案:

以下文字与答案无关

提示:有些试题内容 显示不完整,文字错误 或者 答案显示错误等问题,这是由于我们在扫描录入过程中 机器识别错误导致,人工逐条矫正总有遗漏,所以恳请 广大网友理解。

相关试题
登录 - 搜题小帮手
点我刷新
立即注册
注册 - 搜题小帮手
点我刷新
立即登录