是否可以在运行时访问Java 8类型信息?

是否可以在运行时访问Java 8类型信息?,第1张

是否可以在运行时访问Java 8类型信息?

是的,有可能。表示这种结构的反射类型称为

AnnotatedParameterizedType
。这是如何获取注释示例

// get the email field Field emailAddressField = MyClass.class.getDeclaredField("emailAddresses");// the field's type is both parameterized and annotated,// cast it to the right type representationAnnotatedParameterizedType annotatedParameterizedType =        (AnnotatedParameterizedType) emailAddressField.getAnnotatedType();// get all type parametersAnnotatedType[] annotatedActualTypeArguments =         annotatedParameterizedType.getAnnotatedActualTypeArguments();// the String parameter which contains the annotationAnnotatedType stringParameterType = annotatedActualTypeArguments[0];// The actual annotationAnnotation emailAnnotation = stringParameterType.getAnnotations()[0];System.out.println(emailAnnotation);  // @Email()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5055357.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存