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...