我试图寻找类似的答案,但我还没有找到/找到解决方案,然后我直接要求揭露我的案例
我有一个静态函数validate
private static void validate(AiNode pNode) {
...
for (AiNode child : pNode.mChildren) {
doValidation(child.mMeshes, child.mMeshes.length, "a", "b");
}
}
}
pNode.mChildren
是AiNode
的数组。
这是我的doValidation
private static <T> void doValidation(T[] pArray, int size, String firstName, String secondName) {
// validate all entries
if (size > 0) {
if (pArray == null) {
throw new Error("aiScene." + firstName + " is NULL (aiScene." + secondName + " is " + size + ")");
}
for (int i = 0; i < size; i++) {
if (pArray[i] != null) {
validate(parray[i]);
}
}
}
}
但我一直收到这个错误
method doValidation in class ValidateDataStructure cannot be applied to given types;
required: T[],int,String,String
found: int[],int,String,String
reason: inferred type does not conform to upper bound(s)
inferred: int
upper bound(s): Object
where T is a type-variable:
T extends Object declared in method <T>doValidation(T[],int,String,String)
----
(Alt-Enter shows hints)
我认为这与java中的原始类型数组扩展Object []这一事实有关,实际上如果我将T[]
切换到T
它可以工作,但我不能再循环它了。 ..我不知道如何解决它或哪种解决方案最适合我的情况。
我们的想法是根据数组validate(T[] array)
类型
T
答案 0 :(得分:2)
您的数组是int[]
,而不是Integer[]
。要将其转换为Integer[]
使用
for (AiNode child : pNode.mChildren) {
Integer[] meshes = Arrays.stream(child.mMeshes).boxed().toArray(Integer::new);
doValidation(meshes, child.mMeshes.length, "a", "b");
}