java.lang.Class.getGenericInterfaces()方法範例


java.lang.Class.getGenericInterfaces() 返回表示當前物件所表示的類或介面直接實現的介面型別。

宣告

以下是java.lang.Class.getGenericInterfaces()方法的宣告

public Type[] getGenericInterfaces()

引數

  • NA

返回值

此方法返回這個類中實現介面的陣列。

異常

  • GenericSignatureFormatError -- 如果泛型類的簽名不符合Java虛擬機器規範中指定的格式,第3版。

  • TypeNotPresentException -- 如果任何通用的超介面中是指一種不存在的型別宣告

  • MalformedParameterizedTypeException -- 如果有一般超介面的參照引數化型別不能被範例化的理由。

例子

下面的例子顯示java.lang.Class.getGenericInterfaces()方法的使用。

package com.yiibai;

import java.lang.reflect.*;

public class ClassDemo {

   public static void main(String []args) {         
          
     ClassDemo d = new ClassDemo();
     Class c = d.getClass();
          
     Type[] t = c.getGenericInterfaces();
     if(t.length != 0) {
        for(Type val : t) {
           System.out.println(val.toString());
        }
     }
     else {
        System.out.println("Interfaces are not implemented...");
     }
   }
} 

讓我們來編譯和執行上面的程式,這將產生以下結果:

Interfaces are not implemented...