欢迎来到天天文库
浏览记录
ID:56785672
大小:17.00 KB
页数:2页
时间:2020-07-11
《java接口大题示例.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、2编写一个完整的JavaApplication程序。包含接口ShapeArea,MyRectangle类及Test类,具体要求如下:⑴接口ShapeArea:doublegetArea():求一个形状的面积doublegetPerimeter():求一个形状的周长⑵类 MyRectangle:实现ShapeArea接口,另有以下属性和方法:①属性width:double类型,表示矩形的长height:double类型,表示矩形的高②方法MyRectangle(doublew,doubleh):构造函数toString()方法:输出矩形的描述信息,如“width=1.0,he
2、ight=2.0,perimeter=6.0,area=2.0”⑶Test类作为主类要完成测试功能①生成MyRectangle对象②调用对象的toString方法,输出对象的描述信息答案:publicclassTestShape//主类定义{publicstaticvoidmain(Stringargs[]){MyRectangler=newMyRectangle(1.0,2.0);System.out.println(r.toString());}}interfaceShapeArea//接口定义{publicabstractdoublegetPerimeter();pu
3、blicabstractdoublegetArea();}classMyRectangleimplementsShapeArea{doublewidth,height;MyRectangle(doublew,doubleh){width=w;height=h;}//构造方法publicdoublegetPerimeter(){return2*(width+height);}//求周长方法publicdoublegetArea(){returnwidth*height;}//求面积方法publicStringtoString()//toString()方法{return"wi
4、dth="+width+",height="+height+",perimeter="+getPerimeter()+",area="+getArea();}}
此文档下载收益归作者所有