gpt4 book ai didi

Java checkstyle 错误 "Declaring variables, return values or parameters of type ' Integer' 是不允许的。”

转载 作者:行者123 更新时间:2023-11-30 09:06:25 25 4
gpt4 key购买 nike

一段简单的代码

public class HelloWorld {
public static void main(String[] args) {
int N = 10;
Integer[] x = new Integer[N]; // checkstyle error
for (int i = 0; i < N; i++)
x[i] = (Integer) i;
}
}

“不允许声明类型为‘Integer’的变量、返回值或参数。”

有什么想法吗?

最佳答案

这张支票看起来像是 illegal type 的一部分检查套件。有人决定以不允许您使用 Integer 的方式配置 Checkstyle。

除此之外,这里使用Integer 是不必要的。您可以使用原始 intint[] 来做完全相同的事情。

关于Java checkstyle 错误 "Declaring variables, return values or parameters of type ' Integer' 是不允许的。”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24481516/

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