[Java] java中的接口定义

在Java的通常规范中,对数据成员的修改要通过接口提供的方法进行(如下面示例中接口中的void learnMath(int hours)和void learnEnglish(int hours)),这个规范起到了保护数据的作用。用户不能直接修改数据,必须通过相应的方法才能读取和写入数据。类的设计者可以在接口方法中加入数据的使用规范。

在interface中,我们

  • 不需要定义方法的主体
  • 不需要说明方法的可见性

一个类的public方法构成了接口,所以interface中的方法默认为public。我们用implements关键字来实施interface。一旦在类中实施了某个interface,必须在该类中定义interface的所有方法(learnMath(int hours)和 learnEnglish(int hours))。类中的方法需要与interface中的方法原型相符。否则,Java将报错。

另外,一个类可以实施不止一个的interface。

 public class Test{
public static void main(String[] args){
LearnCourse learnCourse = new LearnCourse(3);
learnCourse.learnMath(2);
learnCourse.learnEnglish(4);
}
}
class LearnCourse implements Learn{
LearnCourse(int t){ }
public void learnMath(int hours){
this.timeMath = hours;
System.out.println("The time for Learning Math is "+hours+" hours");
}
public void learnEnglish(int hours){
this.timeEnglish = hours;
System.out.println("The time for Learning English is "+hours+" hours");
}
private int timeMath = 0;
private int timeEnglish = 0;
}
interface Learn{
void learnMath(int hours);
void learnEnglish(int hours);
}
上一篇:MongoDB学习教程(1)


下一篇:vs自定义类模板