當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Class getGenericInterfaces()用法及代碼示例


java.lang.Class類的getGenericInterfaces()方法用於獲取由該實體直接實現的接口的類型。該實體可以是類或接口。該方法返回由該實體直接實現的接口類型的數組。

用法:

public Type[] getGenericInterfaces()

參數:此方法不接受任何參數。


返回值:此方法返回由該實體直接實現的接口類型的數組。

下麵的程序演示了getGenericInterfaces()方法。

示例1:

// Java program to demonstrate 
// getGenericInterfaces() 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 type of interfaces of myClass 
        // using getGenericInterfaces() method 
        System.out.println( 
            "GenericInterfaces of myClass: "
            + Arrays.toString( 
                  myClass.getGenericInterfaces())); 
    } 
}
輸出:
Class represented by myClass: class Test
GenericInterfaces of myClass: []

示例2:

// Java program to demonstrate 
// getGenericInterfaces() 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 type of interfaces of myClass 
        // using getGenericInterfaces() method 
        System.out.println( 
            "GenericInterfaces of myClass: "
            + Arrays.toString( 
                  myClass.getGenericInterfaces())); 
    } 
}
輸出:
GenericInterfaces of myClass: [interface Arr]

參考: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#getGenericInterfaces–



相關用法


注:本文由純淨天空篩選整理自srinam大神的英文原創作品 Class getGenericInterfaces() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。