当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。