gpt4 book ai didi

java - 如何从 Java 8 中的 getAnnotatedParameterTypes() 获取泛型类型信息?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:48:33 25 4
gpt4 key购买 nike

似乎 getAnnotatedParameterTypes() 返回一个包含原始类型而非通用类型的 AnnotatedType 数组。例如:

public <T> void genericMethod(T t) {
}

@Test
public void testAnnotatedTypes() throws ReflectiveOperationException {
Method method = getClass().getMethod("genericMethod", Object.class);

Type type = method.getGenericParameterTypes()[0];
assertTrue(type instanceof TypeVariable);

AnnotatedType annotatedType = method.getAnnotatedParameterTypes()[0];

// This fails; annotatedType implements only AnnotatedType
assertTrue(annotatedType instanceof AnnotatedTypeVariable);

// This fails too; type is a TypeVariable while annotatedType.getType() is
// Object.class
assertEquals(type, annotatedType.getType());
}

getGenericParameterTypes()不一致的原因是什么?

最佳答案

有一个 bug report about this ,此问题已得到修复。

Method#getGenericParameterTypes() 之间有区别和 Method#getAnnotatedParameterTypes() .

前者保证它返回的类型

If a formal parameter type is a parameterized type, the Type object returned for it must accurately reflect the actual type parameters used in the source code.

If a formal parameter type is a type variable or a parameterized type, it is created. Otherwise, it is resolved.

而后者没有,至少不清楚:

Returns an array of AnnotatedType objects that represent the use of types to specify formal parameter types of the method/constructor represented by this Executable.

我们必须假设 getAnnotatedParameterTypes() 返回被删除的类型(尽管它可能不是那样的)。无界类型变量 T被删除为 Object .如果你有 <T extends Foo> , 它将被删除为 Foo .

至于注释,关于从方法参数中的类型参数获取注释,上面没有给出方法。人们会认为它的工作原理与字段一样。

public static void main(String[] args) throws Exception {
Field field = Example.class.getField("field");
AnnotatedParameterizedType annotatedParameterizedType = (AnnotatedParameterizedType) field
.getAnnotatedType();

System.out.println(annotatedParameterizedType
.getAnnotatedActualTypeArguments()[0].getType());
System.out.println(Arrays.toString(annotatedParameterizedType
.getAnnotatedActualTypeArguments()[0].getAnnotations()));
}

@Retention(RetentionPolicy.RUNTIME)
@Target(value = { ElementType.TYPE_USE })
@interface Bar {
}

public List<@Bar String> field;

打印

class java.lang.String
[@com.example.Example$Bar()]

我非常认为这是一个需要修复的错误,并且会遵循上面链接的错误报告。

关于java - 如何从 Java 8 中的 getAnnotatedParameterTypes() 获取泛型类型信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23025363/

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