在 Java 中列出接口扩展的接口
可以使用 java.lang.Class.getInterfaces() 方法来确定某个对象所表示的接口所实现的接口。此方法返回实现该接口的所有接口的数组。
演示此方法的程序如下 −
示例
package Test; import java.lang.*; import java.util.*; public class Demo { public static void main(String[] args) { listInterfaces(java.util.List.class); } public static void listInterfaces(Class c) { System.out.println("The interface is: " + c.getName()); Class[] interfaces = c.getInterfaces(); System.out.println("The Interfaces are: " + Arrays.asList(interfaces)); } }
输出
The interface is: java.util.List The Interfaces are: [interface java.util.Collection]
现在让我们了解一下该程序。
在方法 main() 中,使用 java.util.List.class 调用方法 listInterfaces()。一个演示此方法的代码片段如下 −
listInterfaces(java.util.List.class);
在方法 listInterfaces() 中,使用了方法 getName() 来打印接口的名称。然后,使用了方法 getInterfaces() 来返回实现该接口的所有接口的数组。然后,使用 Arrays.asList() 打印此数组。一个演示此方法的代码片段如下 −
System.out.println("The interface is: " + c.getName()); Class[] interfaces = c.getInterfaces(); System.out.println("The Interfaces are: " + Arrays.asList(interfaces));
广告