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


Java 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.tutorialspoint;

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

相關用法


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