java.lang.Class類的getInterfaces()方法用於獲取由此實體直接實現的接口。該實體可以是類或接口。該方法返回由該實體直接實現的接口數組。
用法:
public Class<T>[] getInterfaces()
參數:此方法不接受任何參數。
返回值:此方法返回由該實體直接實現的接口數組。
下麵的程序演示了getInterfaces()方法。
示例1:
// Java program to demonstrate getInterfaces() method
import java.util.*;
public class Test {
public static void main(String[] args)
throws ClassNotFoundException
{
// returns the Class object for this class
Class myClass = Class.forName("Test");
System.out.println("Class represented by myClass: "
+ myClass.toString());
// Get the interfaces of myClass
// using getInterfaces() method
System.out.println(
"Interfaces of myClass: "
+ Arrays.toString(
myClass.getInterfaces()));
}
}
輸出:
Class represented by myClass: class Test Interfaces of myClass: []
示例2:
// Java program to demonstrate getInterfaces() method
import java.util.*;
interface Arr {
}
public class Test implements Arr {
public static void main(String[] args)
throws ClassNotFoundException
{
// returns the Class object
Class myClass = Class.forName("Test");
// Get the interfaces of myClass
// using getInterfaces() method
System.out.println(
"Interfaces of myClass: "
+ Arrays.toString(
myClass.getInterfaces()));
}
}
輸出:
Interfaces of myClass: [interface Arr]
參考: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#getInterfaces–
相關用法
- Java Class getDeclaredConstructors()用法及代碼示例
- Java Class getModule()用法及代碼示例
- Java Class isAnnotationPresent()用法及代碼示例
- Java Class getConstructor()用法及代碼示例
- Java Class getDeclaredConstructor()用法及代碼示例
- Java Class getAnnotation()用法及代碼示例
- Java Class cast()用法及代碼示例
- Java Class hashCode()用法及代碼示例
- Java Class getDeclaredAnnotation()用法及代碼示例
- Java Class getField()用法及代碼示例
- Java Class getName()用法及代碼示例
- Java Class getPackage()用法及代碼示例
- Java Class getMethod()用法及代碼示例
- Java Class getSuperclass()用法及代碼示例
- Java Class getComponentType()用法及代碼示例
注:本文由純淨天空篩選整理自srinam大神的英文原創作品 Class getInterfaces() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。