类的继承(定义一个名为Square的类表示正方形)
定义一个名为Square的类表示正方形,使其继承Shape抽象类,覆盖Shape类中的抽象方法getPerimeter()和getArea()。编写程序测试Square类的使用。
abstract class Shape
{
abstract public double getPerimeter();
abstract public double getArea();
}
class Square extends Shape
{
double width;
double height;
public Square(double width,double height)
{
this.width=width;
this.height=height;
}
public double getArea()
{
return(widthheight);
}
public double getPerimeter()
{
return(2(width+height));
}
【类的继承(定义一个名为Square的类表示正方形)】}
class cs
{ public static void main(String[] args)
{
Square s1= new Square(1,2);
System.out.println("Area: "+s1.getArea());
System.out.println("Perimeter: "+s1.getPerimeter());
}
}
文章图片
推荐阅读
- 热闹中的孤独
- JAVA(抽象类与接口的区别&重载与重写&内存泄漏)
- 放屁有这三个特征的,请注意啦!这说明你的身体毒素太多
- 一个人的旅行,三亚
- 布丽吉特,人生绝对的赢家
- 慢慢的美丽
- 尽力
- 一个小故事,我的思考。
- 家乡的那条小河
- 《真与假的困惑》???|《真与假的困惑》??? ——致良知是一种伟大的力量