Listing the Interfaces That an Interface Extends : Interface « Reflection « Java Tutorial
- Java Tutorial
- Reflection
- Interface
public class Main {
public static void main(String[] argv) throws Exception {
Class cls = java.util.List.class;
Class[] intfs = cls.getInterfaces(); // java.util.Collection
}
}