我是否需要第三方接口的实现才能完成我的代码?

时间:2018-10-17 11:30:42

标签: java interface

已经给我完成了一个项目,该项目本身很简单。

基本上,我得到了一个名为CourseEligibility的接口,我需要实现该接口(CourseEligibilityImpl)。并且有一个名为CourseExplorer的外部接口。

我实现的类将有一个名为

的方法
canEnrollOnCourse(int studentYear, String courseCode).

并且外部接口具有称为

的方法
getCourseYear(String courseCode)

这一切都非常简单,但是我应该实现CourseExplorer类还是在我的CourseEligibilityImpl类中如何使用其抽象方法呢?

CourseExplorer属于外部课程,应该由另一个团队进行。

1 个答案:

答案 0 :(得分:0)

像CourseEligibility之类的声音应具有基本类型CourseExplorer的成员变量。然后它将使用CourseExplorer的任何实现。