- 1、本文档共94页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
类,对象和接口概要
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Application 类 public class Application{ public static void main(String args[]){ Pillar pillar; Geometry bottom; bottom=new Rectangle(12,22,100); pillar =new Pillar (bottom,58); //pillar是具有矩形底的柱体 System.out.println(矩形底的柱体的体积+pillar.getVolume()); bottom=new Circle(10); pillar =new Pillar (bottom,58); //pillar是具有圆形底的柱体 System.out.println(圆形底的柱体的体积+pillar.getVolume()); } } 面向抽象编程 Pillar类 public class Pillar { Geometry bottom; double height; Pillar (Geometry bottom,double height) { this.bottom=bottom; this.height=height; } public double getVolume() { return bottom.getArea()*height;} } 用户需求2: 计算长方体的体积 课堂练习请写出用户需求3:计算三角锥的体积 接口 Java不支持多继承性,即一个类只能有一个父类。为了克服单继承的缺点,Java使用了接口,一个类可以实现多个接口。 使用关键字interface来定义一个接口。接口的定义和类的定义很相似,分为接口的声明和接口体。 接口体中包含常量定义和方法定义两部分。接口体中只进行方法的声明,不许提供方法的实现,所以,方法的定义没有方法体,且用分号“;”结尾。 interface Printable int MAX=100; void add(); float sum(float x ,float y); } 接口中只有常量定义和public的abstract方法定义,程序在编写接口时,允许省略常量前面的public、final和static修饰,也允许省略方法前面的public和abstract修饰 接口的使用 一个类通过使用关键字implements 声明自己使用一个或多个接口。如果使用多个接口,用逗号隔开接口名 如果一个类使用了某个接口,那么这个类必须实现该接口的所有方法,即为这些方法提供方法体 在类中实现接口的方法时,方法的名字、返回类型、参数个数及类型必须与接口中的完全一致。 class A implements Printable,Addable 接口中的方法默认是public abastact方法,所以类在实现接口方法时给出方法体,并且一定要用public来修饰 如果接口方法的返回类型不是void型,那么在类中实现接口方法时,方法体至少要有一个return语句。如果是void型,类体除了两个分界符之外,也可以没有任何语句。 interface Computable { int MAX=100; int f(int x); } class China implements Computable { int number; public int f(int x) { int sum=0; for(int i=1;i=x;i++) { sum=sum+i; } return sum; } } class Japan implements Computable { int number; public int f(int x) { return 44+x; } } public class Example4_25 { public static void main(String args[]) { China zhang; Japan henlu; zhang=new China();
文档评论(0)