java.lang.reflect.Field的getAnnotationsByType()方法用于返回与此字段元素关联的注释。这是获取Field对象注释的重要方法。如果没有与此Field元素关联的注释,则返回空数组。调用者可以将返回的数组修改为方法发送的实际对象的副本;它对返回给其他调用方的数组没有影响。
用法:
public <T extends Annotation> T[] getAnnotationsByType(Class<T> annotationClass)
参数:此方法接受注释类,它是与注释类型相对应的Class对象。
返回:如果与此元素相关联,则此方法针对指定的注释类型返回此元素的所有注释,否则返回长度为零的数组。
异常注意:如果给定的注释类为null,则此方法将引发NullPointerException。
以下示例程序旨在说明getAnnotationsByType()方法:
示例1:
// Java program to illustrate
// getAnnotationsByType() method
import java.lang.annotation.*;
import java.lang.reflect.Field;
import java.util.Arrays;
public class GFG {
// initialize field with
// default value in annotation
@annotations(32512.21)
private double realNumbers;
public static void main(String[] args)
throws NoSuchFieldException
{
// create Field object
Field field
= GFG.class
.getDeclaredField("realNumbers");
// apply getAnnotationsByType()
annotations[] annotations
= field.getAnnotationsByType(
annotations.class);
// print results
System.out.println(
Arrays
.toString(annotations));
}
@Target({ ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
private @interface annotations {
double value() default 99.9;
}
}
输出:
[@GFG$annotations(value=32512.21)]
示例2:
// Java program to illustrate
// getAnnotationsByType() method
import java.lang.annotation.*;
import java.lang.reflect.Field;
import java.util.Arrays;
public class GFG {
// initialize field with
// default value in annotation
@annotations("ChipherCodes@#!")
private double string;
public static void main(String[] args)
throws NoSuchFieldException
{
// create a Field object
Field field
= GFG.class
.getDeclaredField("string");
// apply getAnnotationsByType()
annotations[] annotations
= field.getAnnotationsByType(
annotations.class);
// print results
System.out.println(
Arrays.toString(
annotations));
}
@Target({ ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
private @interface annotations {
String value();
}
}
输出:
[@GFG$annotations(value=ChipherCodes@#!)]
相关用法
- Java AnnotatedElement getAnnotationsByType()用法及代码示例
- Java Package getAnnotationsByType()用法及代码示例
- Java Class getAnnotationsByType()用法及代码示例
- Java Field set()用法及代码示例
- Java Field get()用法及代码示例
- Java Field getDouble()用法及代码示例
- Java Field setByte()用法及代码示例
- Java Field getByte()用法及代码示例
- Java Field getModifiers()用法及代码示例
- Java Field isEnumConstant()用法及代码示例
- Java Field setLong()用法及代码示例
- Java Field getGenericType()用法及代码示例
- Java Field toGenericString()用法及代码示例
- Java Field setShort()用法及代码示例
- Java Field setChar()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Field getAnnotationsByType() method in Java With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。