gpt4 book ai didi

java - 如何获取类中声明的类型参数的数量?

转载 作者:行者123 更新时间:2023-12-01 19:42:46 24 4
gpt4 key购买 nike

我想获取给定类声明的类型参数的数量。例如,类 java.util.List声明一个类型参数。 java.util.Map宣布两个。和java.util.function.BiFunction声明三。

理想情况下,我有一个接受 Class 的方法对象并返回该计数。类似的东西

SomeUtility.getCountOfTypeParameters(java.util.List.class);

注意:我对声明时提供的类型参数不感兴趣,例如 List<String> 类型的变量。 .

最佳答案

Class 类提供 getTypeParameters()方法

Returns an array of TypeVariable objects that represent the type variables declared by the generic declaration represented by this GenericDeclaration object, in declaration order. Returns an array of length 0 if the underlying generic declaration declares no type variables.

您可以只检查返回数组的长度。

public static void main(String[] args) {
Class<Map> clazz = Map.class;
TypeVariable<Class<Map>>[] parameters = clazz.getTypeParameters();
System.out.println(parameters.length);
}

打印

2

关于java - 如何获取类中声明的类型参数的数量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54683299/

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