问题描述
我要提供一些方法产生的一些值的注释。
I want to provide annotations with some values generated by some methods.
我试过这个至今:
public @interface MyInterface {
String aString();
}
@MyInterface(aString = MyClass.GENERIC_GENERATED_NAME)
public class MyClass {
static final String GENERIC_GENERATED_NAME = MyClass.generateName(MyClass.class);
public static final String generateName(final Class<?> c) {
return c.getClass().getName();
}
}
思想 GENERIC_GENERATED_NAME
是静态最后
,它抱怨
有关注释属性的值 MyInterface.aString
必须是一个常量前pression
那么,如何实现这一目标?
So how to achieve this ?
推荐答案
有没有办法动态生成的注释中使用的字符串。编译器评估注解元数据 RetentionPolicy.RUNTIME
在编译时的注解,但 GENERIC_GENERATED_NAME
不知道,直到运行时。你不能为那些标注使用生成的值 RetentionPolicy.SOURCE
,因为它们被丢弃编译时间,所以这些生成的值会的从不的是众所周知的。
There is no way to dynamically generate a string used in an annotation. The compiler evaluates annotation metadata for RetentionPolicy.RUNTIME
annotations at compile time, but GENERIC_GENERATED_NAME
isn't known until runtime. And you can't use generated values for annotations that are RetentionPolicy.SOURCE
because they are discarded after compile time, so those generated values would never be known.
这篇关于Java注解值动态地提供的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!