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


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


java.lang.Class類的getTypeParameters()方法用於獲取此實體的類型參數。該實體可以是類,數組,接口等。該方法返回表示類型變量的TypeVariable對象的數組。

用法:

public TypeVariable<Class<T>> getTypeParameters()

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


返回值:此方法返回表示類型變量的TypeVariable對象數組。

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

示例1:

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

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