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


Java java.lang.reflect.Field.getGenericType()用法及代码示例



描述

这个java.lang.reflect.Field.getGenericType()方法返回一个 Type 对象,该对象表示此 Field 对象表示的字段的声明类型。

声明

以下是声明java.lang.reflect.Field.getGenericType()方法。

public Type getGenericType()

返回

一个 Type 对象,表示由该 Field 对象表示的字段的声明类型。

异常

  • GenericSignatureFormatError- 如果通用字段签名不符合 Java 虚拟机规范中指定的格式。

  • TypeNotPresentException- 如果指定的对象不是声明基础字段(或其子类或实现者)的类或接口的实例。

  • MalformedParameterizedTypeException- 如果底层字段的泛型签名指的是由于任何原因无法实例化的参数化类型。

示例

下面的例子展示了 java.lang.reflect.Field.getGenericType() 方法的用法。

package com.tutorialspoint;

import java.lang.reflect.Field;

public class FieldDemo {

   public static void main(String[] args) throws NoSuchFieldException, 
      SecurityException, IllegalArgumentException, IllegalAccessException {
          
      SampleClass sampleObject = new SampleClass();
            
      Field field = SampleClass.class.getField("sampleField");
      System.out.println(field.getGenericType());
   }
}

class SampleClass {
   public static float sampleField = 5.0f;
}

让我们编译并运行上面的程序,这将产生以下结果 -

float

相关用法


注:本文由纯净天空筛选整理自 java.lang.reflect.Field.getGenericType() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。