我有一個間接實現接口的類(它的超類或超級類實現可以實現),我想知道類是否實現接口。反射和接口
在編碼方面:
import java.lang.reflect.Type;
class My implements MyName{
}
public class Tset extends My implements yourName{
public static void main(String[] args) {
Class[] allClassAndInterfaces = Tset.class.getInterfaces();
//but allClassAndInterfaces is not giving me the MyName Interface
//although it gives me YourName Interface
System.out.println(ArrayUtils.toString(lits));
}
}
基本上,我想所有類實現的直接和間接接口,class.getInterfaces()是無法做到這一點。 – Chandan
你可以使用遞歸 – michael667
是否沒有任何直接的API ... – Chandan