java入门程序题与源码4.doc

  1. 1、本文档共8页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
实验目的 了解接口,类,抽象类之间的不同,能够在其之间进行继承与实现 掌握文件的输入输出流,包括scanner类,字符流,字节流等 等的 运用,能够对文件进行基本的读出写入 实验内容 实验题目一: ?设计 (1)形状接口、(2)积木块抽象类、(3)三角形类、正方形类、圆形类和矩形类, 其中(2)实现了(1),(3)继承了(2),然后编写主函数分别定义它们的对象,并显示其值。 public class title4_1{ public static void main(String[] args) { Shape circle=new Circle(20),rect=new Rectangle(100,50); Shape square=new Square(10),tri=new Triangle(10,20,25); circle.showArea(); circle.showCircle(); rect.showArea(); rect.showCircle(); square.showArea(); square.showCircle(); tri.showArea(); tri.showCircle(); } } //形状接口 interface Shape{ public double getArea();//求面积 public double getCircle();//求周长 public void showArea(); public void showCircle(); } //积木块抽象类 abstract class BuildingBlock implements Shape{ public void showArea() { } public void showCircle() { } } //圆类 class Circle extends BuildingBlock{ private double r; public Circle(double r){ this.r=r; } //求面积 public double getArea() { return Math.PI*this.r*this.r; } //求周长 public double getCircle() { return 2*this.r*Math.PI; } public void showArea() { System.out.println(圆的半径为:+this.r); System.out.println(圆面积:+this.getArea()); } public void showCircle() { System.out.println(圆周长:+this.getCircle()); System.out.println(); } } //定义长方形 class Rectangle extends BuildingBlock{ private double l,w; public Rectangle(double l,double w){ this.w=w; this.l=l; } public double getArea() { return this.w*this.l; } public double getCircle() { return 2*(this.w+this.l); } public void showArea() { System.out.println(长方形的长为:+this.l+ 宽为:+this.w); System.out.println(长方形面积:+this.getArea()); } public void showCircle() { System.out.println(长方形周长:+this.getCircle()); System.out.println(); } } //定义正方形 class Square extends BuildingBlock{ private double a; public Square(double a){ this.a=a; } public double getArea() { return this.a*this.a; } public d

文档评论(0)

kehan123 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档