Java问题:声明一个接口,其中包含一个抽象方法。声明另一个类,将上述接口进行扩展(implements)。在类中实

 我来答
fangjiang2009
2011-10-20
知道答主
回答量:0
采纳率:0%
帮助的人:0
展开全部
package Test;
//形状类
abstract class Shape {

public abstract void getArea();

}
//矩形类
class Rectangle extends Shape{
float a;
float b;
public Rectangle(float a,float b){
this.a = a;
this.b = b;
}
public void getArea(){
float Area = a* b;
System.out.println("矩形的面积为:"+Area);
}
}
//三角形
class Triangle extends Shape{
float a;
float h;
public Triangle(float a,float h){
this.a = a;
this.h = h;
}
public void getArea(){
float Area=(a*h)/2;
System.out.println("三数贺搭角形的面积为:薯拿"+Area);
}
}
//圆形
class Circle extends Shape{
float r;
public Circle(float r) {
this.r = r;
}
public void getArea(){
float Area=(float)(Math.PI*r*r);
System.out.println("圆形的面积为:"拍燃+Area);
}
}
//测试类
public class TestShape {

public TestShape(Shape s) {
s.getArea();
}
public static void main(String[] args) {
//矩形面积
Shape jx=new Rectangle(5,6);
TestShape ts=new TestShape(jx);

//三角形面积
Shape sjx=new Triangle(4,5);
TestShape ts1=new TestShape(sjx);

//圆形面积
Shape yx=new Circle(10);
TestShape ts2=new TestShape(yx);

}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式