方法类 | Java中的 getDefaultValue() 方法
Java.lang.reflect.Method 类的getDefaultValue()方法。它返回 Method 对象表示的注解成员的默认值。
当注解成员属于原始类型时,该方法返回该包装类型的实例。如果注解成员不包含任何默认值,或者方法对象没有注解类型的成员,则返回 null。
句法:
public Object getDefaultValue()
返回值:此方法返回此 Method 对象表示的注解成员的默认值。
异常:如果注解是 Class 类型并且找不到默认类值的定义,则此方法将引发TypeNotPresentException 。
下面的程序说明了 Method 类的 getDefaultValue() 方法:
示例1:下面的程序包含一个接口名称demo,其中接口的方法表示的注解成员有一些默认值。程序的Main方法为接口的每个方法创建方法对象,如果方法包含这样的默认值,则打印注解的默认值注释的值。
/*
* Program Demonstrate getDefaultValue() method
* of Method Class.
*/
import java.lang.reflect.Method;
// Main Class
public class GFG {
public static void main(String[] args)
throws NoSuchMethodException, SecurityException
{
// Get Method Object
Method methodObj1 = demo
.class
.getDeclaredMethod("fauvMovie");
// Apply getDefaultValue() method
Object obj1 = methodObj1.getDefaultValue();
// print default value
System.out.println(obj1);
// Get Method Object
Method methodObj2 = demo
.class
.getDeclaredMethod("fauvMovieRating");
// Apply getDefaultValue() method
Object obj2 = methodObj2.getDefaultValue();
// print default value
System.out.println(obj2);
// Get Method Object
Method methodObj3 = demo
.class
.getDeclaredMethod("fauvMovieReleaseYear");
// Apply getDefaultValue() method
Object obj3 = methodObj3.getDefaultValue();
// print default value
System.out.println(obj3);
}
// an interface with default annotations
public @interface demo {
public String fauvMovie() default "Inception";
public double fauvMovieRating() default 9.6;
public int fauvMovieReleaseYear();
}
}
输出:
Inception
9.6
null
示例2:下面的程序包含一个接口名称demo,其中接口方法表示的注解成员有一些默认值,以及一个类名demo,注解没有默认值。程序的Main方法为接口的每个方法创建方法对象如果方法包含注释的默认值,则分类并打印注释的默认值。
/*
* Program Demonstrate getDefaultValue() method
* of Method Class.
*/
import java.lang.annotation.*;
import java.lang.reflect.Method;
// a simple class with no annotations
class demo {
public void demoMethod(String value)
{
System.out.println("demo method: " + value);
}
}
public class GFG {
// Main method
public static void main(String[] args)
{
try {
// create class object
Class classobj = demo.class;
Class[] parameterTypes = { String.class };
// get Method Object
@SuppressWarnings("unchecked")
Method method = classobj
.getMethod("demoMethod",
parameterTypes);
// Print default value
System.out.println("default value of demoMethod():"
+ method.getDefaultValue());
// get Method Object
Method methodobj = demoInterface
.class
.getDeclaredMethod("getValue");
// get default value
Object defaultValue = methodobj.getDefaultValue();
// Print default value
System.out.println("default value of getValue():"
+ defaultValue);
}
catch (Exception e) {
e.printStackTrace();
}
}
// a interface with some annotation
@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
private @interface demoInterface {
int getValue() default 51;
}
}
输出:
default value of demoMethod():null
default value of getValue():51
参考:
https://docs.oracle.com/javase/8/docs/api/java Java