您的当前位置:首页java第六次实验报告接口

java第六次实验报告接口

来源:小侦探旅游网
1、 实验题目

体操比赛计算选手成绩的办法是去掉一个最高分和一个最低分再计算平均分,而学校考察一个班级的某科目的考试情况时,是计算全班学生的平均成绩。Gymnastics 类和School 类都实现了ComputerAverage接口,但实现方式不同。 2、 程序代码

interface ComputerAverage{ public double average(double x[]); }

class Gymnastics implements ComputerAverage{ public double average(double x[]){ int count=; double aver=0,temp=0; for(int i=0;i2) aver=aver/(count-2); else aver=0; return aver; } }

class School implements ComputerAverage{ public double average(double x[]){ int count=; double aver=0; for(int i=0;i0) aver=aver/count; return aver; }

}

public class Estimator { public static void main(String args[]){ double a[]={,,,,,,}; double b[]={89,56,78,90,100,77,56,45,36,79,98}; ComputerAverage computer; computer=new Gymnastics(); double result=(a);//computer调用average(double x[])方法,将数组a传递给参数x

\"%n\"); \"体操选手最后得分:%\\n\ computer=new School(); result=(b);//computer调用average(double x[])方法,将数组b传递给参数x

\"班级考试平均分数:%\\n\ } }

3、 实验结果

4、 实验分析

一个类可以实现多个接口,类通过使用关键字implements声明自己实现一个或多个接口,如果一个非抽象类实现了某个接口,那么这个类必须重写该接口的所有方法。

5、 实验练习

School类如果不重写public double aversge(double x[])方法,程序编译时提示怎样的错误?

答:SChool不是抽象的,并且未覆盖ComputerAverage中的抽象方法。

实验二

1、 实验题目

货车要装载一批货物,货物由三种商品组成:电视、计算机和洗衣机,卡车需要计算出整批货物的重量。

2、 实验代码

interface ComputerWeight{ public double computerWeight(); }

class Television implements ComputerWeight{

public double computerWeight(){ return ; } }

class Computer implements ComputerWeight{ public double computerWeight(){ return ; } }

class WashMachine implements ComputerWeight{ public double computerWeight(){ return ; } }

class Truck{ ComputerWeight []goods; double totalWeights=0; Truck(ComputerWeight[] goods){ = goods; } public void setGoods(ComputerWeight[] goods){ = goods; } public double getTotalWeights(){ totalWeights=0; for(int i=0;i<;i++){ totalWeights = totalWeights + goods[i]puterWeight(); } return totalWeights; } }

public class CheckCarWeight{ public static void main(String args[]){ ComputerWeight []goods = new ComputerWeight[650]; //装载650件货物 for(int i=0;i<;i++){ //分成三类 if(i%3 == 0) goods[i]=new Television(); else if(i%3 == 1) goods[i]=new Computer(); else if(i%3 == 2)

} }

goods[i]=new WashMachine(); }

Truck truck =new Truck(goods);

\"\\n货车装载的货物重量:% kg\\n\

goods = new ComputerWeight[68]; //68件货物 for(int i=0;i<;i++){ //分成两类 if(i%2 == 0)

goods[i]=new Television(); else

goods[i]=new WashMachine(); }

(goods);

\"货车装载的货物重量:% kg\\n\

3、 实验结果

4、 实验分析

接口回调是指:可以把使用某一接口的类型创建的对象引用赋给该接口声明的接口变量中,那么该接口变量就可以调用被实现的接口中的方法,当接口变量调用被类实现的接口中的方法时,就是通知相应的对象调用接口的方法,这一过程成为对象功能的接口回调。接口的方法不一定相同,接口回调可能产生不同的行为。 5、 实验练习

请在实验基础上再编写一个实现ComputerWeight接口的类,比如Refrigerrator。这样一来,货车装载的货物中就可以有Refrigerrator类型的对象。当系统增加一个实现ComputerWeight接口的类后,Truck类需要进行修改吗? 答:代码:

class Refrigerrator implements ComputerWeight{ public double computerWeight(){ return ; }

}

实验三

1、 实验题目

小狗在不同环境条件下可能呈现不同的状态表现,要求接口封装小狗的状态。具体要求如下:

(1)编写一个接口DogState,该接口有一个名为void showState()方法。

(2)编写一个Dog类,该类中有一个DogState接口声明的变量state,另外,该类有一个show()方法,在该方法中让接口state回调 showState()方法。 (3)编写若干个实现DogState接口的类,负责刻画小狗的各种状态。 (4)编写主类,在主类中实现测试小狗的各种状态。

2、 程序代码

interface DogState{ public void showState(); }

class SoftlyState implements DogState{ public void showState(){ \"听主人的命令\"); } }

class MeetEnemyState implements DogState{ public void showState(){ \"狂叫,并冲过去狠咬敌人\"); } }

class MeetFriendState implements DogState{ public void showState(){ \"晃动尾巴,表示欢迎\"); } }

class MeetAnotherdogState implements DogState{ public void showState(){ \"嬉戏\"); } }

class Dog{ DogState state; public void show(){ (); } public void setState(DogState s){ state=s; } }

public class CheckDogState{ public static void main(String args[]){ Dog yellowDog=new Dog(); \"狗在主人面前:\"); (new SoftlyState()); (); \"狗遇到敌人:\"); (new MeetEnemyState()); (); \"狗遇到朋友:\"); (new MeetFriendState()); (); \"狗遇到同类:\"); (new MeetAnotherdogState()); (); }

}

3、 实验结果

4、 实验分析

面向接口编程是指当设计某种重要的类时,不让该类面向具体的类,而是面向接口,即所设计中的重要数据是接口声明的变量,而不是具体声明的对象。 5、实验练习

用面向接口的思想编写一个程序,模拟水杯中的水在不同温度下可能出现的状态。 代码:

interface WaterState{

public void showState(); }

class SubzeroState implements WaterState{ public void showState(){ \"结冰\"); } }

class NormalState implements WaterState{ public void showState(){ \"冰冷或凉快\"); } }

class HotState implements WaterState{ public void showState(){ \"有热气冒出,温热\"); } }

class BoiledState implements WaterState{ public void showState(){ \"沸腾,烫\"); } }

class Water{

WaterState state; public void show(){ (); }

public void setState(WaterState s){ state=s; } }

public class CheckWaterState{

public static void main(String args[]){ Water cupWater=new Water(); \"水杯中的水在零下时:\"); (new SubzeroState()); ();

\"水杯中的水在常温时:\"); (new NormalState()); ();

\"水杯中的水在六十七度时:\"); (new HotState()); ();

\"水杯中的水在一百度时:\"); (new BoiledState()); (); } }

因篇幅问题不能全部显示,请点此查看更多更全内容