내 추상 클래스에 비교 가능한 인터페이스를 구현하는 방법을 모르겠습니다. 다음 예제 코드를 사용하여 내 머리를 둘러싼 다.
public class Animal{
public String name;
public int yearDiscovered;
public String population;
public Animal(String name, int yearDiscovered, String population){
this.name = name;
this.yearDiscovered = yearDiscovered;
this.population = population; }
public String toString(){
String s = "Animal name: "+ name+"\nYear Discovered: "+yearDiscovered+"\nPopulation: "+population;
return s;
}
}
Animal 유형의 객체를 생성하는 테스트 클래스가 있지만이 클래스 내에 비슷한 인터페이스를 갖고 싶어서 오래된 발견의 순위가 낮음보다 높았습니다. 그래도 어떻게 해야할지 모르겠습니다.
Comparable
. 지시하는 방식으로 지시하는 방법을 구현하십시오.