发布网友 发布时间:2022-05-26 16:46
共1个回答
热心网友 时间:2023-05-22 17:33
网页链接
getAnnotatedType()
返回一个 AnnotatedType 对象,该对象表示使用类型来指定由该字段对象表示的字段的类型
通过其 getType() 方法,我们可以获取到对应的字段类型
public class FieldTest {
private String name;
public static void main(String[] args) throws Exception {
Field field = FieldTest.class.getDeclaredField("name");
AnnotatedType annotatedType = field.getAnnotatedType();
// class java.lang.String
System.out.println(annotatedType.getType());
}
}