私は次のようなインターフェースを持っています
パブリック インターフェイス KeyRetriever {
public Object getKey(Object obj);
}
実装を次のようにしたい
CustomerTypeKeyRetriever (実装クラス)
public String getKey(Customer customer) {
return null;
}
どうすればこれを達成できますか。現在、コンパイル エラーがスローされます - 「型 CustomerTypeKeyRetriever は、継承された抽象メソッド KeyRetriever.getKey(Object) を実装する必要があります」