列出类在Java中实现的接口
可以使用java.lang.Class.getInterfaces()方法确定由对象表示的类所实现的接口。此方法返回该类实现的所有接口的数组。
演示此的程序如下所示-
示例
package Test;
import java.lang.*;
import java.util.*;
public class Demo {
public static void main(String[] args) {
listInterfaces(String.class);
}
public static void listInterfaces(Class c) {
System.out.println("The Class is: " + c.getName());
Class[] interfaces = c.getInterfaces();
System.out.println("The Interfaces are: " + Arrays.asList(interfaces));
}
}输出结果
The Class is: java.lang.String The Interfaces are: [interface java.io.Serializable, interface java.lang.Comparable, interface java.lang.CharSequence]
现在让我们了解上面的程序。
用方法listInterfaces()中的String.class调用该方法main()。演示这的代码片段如下-
listInterfaces(String.class);
在方法中listInterfaces(),该方法getName()用于打印类的名称。然后,该方法getInterfaces()用于返回该类实现的所有接口的数组。然后,使用Arrays.asList()打印此数组。演示这的代码片段如下-
System.out.println("The Class is: " + c.getName());
Class[] interfaces = c.getInterfaces();
System.out.println("The Interfaces are: " + Arrays.asList(interfaces));热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短