Object getDefaultValue()

优质
小牛编辑
129浏览
2023-12-01

描述 (Description)

java.lang.reflect.Method.getDefaultValue()方法返回此Method实例表示的注释成员的默认值。 如果成员是基本类型,则返回相应包装类型的实例。 如果没有与成员关联的默认值,或者方法实例不表示注释类型的声明成员,则返回null。

声明 (Declaration)

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

public Object getDefaultValue()

返回值 (Returns)

此Method实例表示的注释成员的默认值。

异常 (Exceptions)

TypeNotPresentException - 如果注释的类型为Class,则无法找到默认类值的定义。

例子 (Example)

以下示例显示了java.lang.reflect.Method.getDefaultValue()方法的用法。

package cn.xnip;
import java.lang.reflect.Method;
public class MethodDemo {
   public static void main(String[] args) {
      Method[] methods = SampleClass.class.getMethods();
      System.out.println(methods[0].getDefaultValue());
   }
}
class SampleClass {
   private String sampleField;
   public String getSampleField() {
      return sampleField;
   }
   public void setSampleField(String sampleField) {
      this.sampleField = sampleField;
   }
}

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

null