gpt4 book ai didi

java - 为什么 RecordComponent 没有在 Java 17 的 Records 类中定义的注释信息?

转载 作者:行者123 更新时间:2023-12-04 12:20:07 29 4
gpt4 key购买 nike

我玩唱片,发现了一些对我来说不合逻辑的东西:
记录:

record R(@NotEmpty Integer i) {}
代码:
RecordComponent[] recordComponents = R.class.getRecordComponents();
System.out.println(recordComponents[0].isAnnotationPresent(NotEmpty.class));
//prints false
但是,如果我这样做:
System.out.println(R.class.getDeclaredFields()[0].isAnnotationPresent(NotEmpty.class));
//prints true
这是预期的吗?因为 RecordComponent implements AnnotatedElement ,所以我想 RecordComponent应该有关于注释的信息。我的期望错了吗?

最佳答案

这取决于指定的允许 targets的注释。记录组件具有关联的构造函数参数、字段、访问器方法和类型。如果允许这些位置中的至少一个位置,编译器将接受注释,但该注释只会与记录的允许位置相关联。
所以下面的代码

public class RecordAnnotations {
public static void main(String[] args) {
Class<?> cl = Test.class;
for(var r: cl.getRecordComponents()) {
System.out.println("record component "
+ Arrays.toString(r.getAnnotations()) + " " + r);
System.out.println("\tof type " + r.getAnnotatedType());
System.out.println("\taccessed by " +
Arrays.toString(r.getAccessor().getAnnotations())+" "+r.getAccessor());
System.out.println("\twith return type "
+ r.getAccessor().getAnnotatedReturnType());
}
System.out.println();
for(var r: cl.getDeclaredFields()) {
System.out.println("field " + Arrays.toString(r.getAnnotations())+" "+r);
System.out.println("\tof type " + r.getAnnotatedType());
}
System.out.println();

for(var c: cl.getDeclaredConstructors()) {
System.out.println("constructor " + c);
for(var r: c.getParameters()) {
System.out.println("\tparameter "
+ Arrays.toString(r.getAnnotations()) + " " + r);
System.out.println("\t\tof type " + r.getAnnotatedType());
}
}
//System.out.println();
//for(var r: cl.getRecordComponents()) System.out.println(r);
}
}

@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.RECORD_COMPONENT)
@interface WithRecord {}

@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD)
@interface WithField {}

@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.PARAMETER)
@interface WithParameter {}

@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE_USE)
@interface WithTypeUse {}

@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD)
@interface WithMethod {}

record Test(@WithRecord @WithField @WithParameter @WithTypeUse @WithMethod
int component) {
}
打印
record component [@WithRecord()] int component
of type @WithTypeUse() int
accessed by [@WithMethod()] public int Test.component()
with return type @WithTypeUse() int

field [@WithField()] private final int Test.component
of type @WithTypeUse() int

constructor Test(int)
parameter [@WithParameter()] int component
of type @WithTypeUse() int
显示如何将每个注释复制到其允许的位置。只有具有 RECORD_COMPONENT 的注释作为允许的目标,可通过 RecordComponent 检索的 getAnnotationisAnnotationPresent .
当然, @Retention(RetentionPolicy.RUNTIME)也是必需的。

关于java - 为什么 RecordComponent 没有在 Java 17 的 Records 类中定义的注释信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69559744/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com