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


Java java.lang.reflect.Method.getGenericReturnType()用法及代码示例



描述

这个java.lang.reflect.Method.getGenericReturnType()method 返回一个 Type 对象,该对象表示此 Method 对象表示的方法的正式返回类型。

声明

以下是声明java.lang.reflect.Method.getGenericReturnType()方法。

public Type getGenericReturnType()

返回

一个 Type 对象,表示底层方法的正式返回类型。

异常

  • GenericSignatureFormatError- 如果泛型方法签名不符合 Java 虚拟机规范中指定的格式。

  • TypeNotPresentException- 如果底层方法的任何参数类型引用不存在的类型声明。

  • MalformedParameterizedTypeException- 如果任何底层方法的参数类型引用了一个因任何原因无法实例化的参数化类型。

示例

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

现场演示
package com.tutorialspoint;

import java.lang.reflect.Method;
import java.lang.reflect.Type;

public class MethodDemo {

   public static void main(String[] args) {

      Method[] methods = SampleClass.class.getMethods();
      Type returnType = methods[0].getGenericReturnType();
      System.out.println(returnType);
   }
}

class SampleClass {
   private String sampleField;

   public String getSampleField() {
      return sampleField;
   }

   public void setSampleField(String sampleField) {
      this.sampleField = sampleField; 
   } 
}

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

class java.lang.String

相关用法


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