作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将 chelper 与 intelliJ 一起使用,编译后括号被删除。有什么办法解决这个问题吗?
这是我的代码在编译之前的样子:
public class TaskA {
int arr[];
public void solve(int testNumber, InputReader in, OutputWriter out) {
arr = new int[3];
}
}
这是编译后的样子:
static class TaskA {
int arr;
public void solve(int testNumber, InputReader in, OutputWriter out) {
arr = new int[3];
}
}
它也给出了这个错误:
Error:(32, 19) java: incompatible types: int[] cannot be converted to int
最佳答案
尝试在变量名称之前使用括号,它应该可以正常工作。
public class TaskA {
int[] arr;
public void solve(int testNumber, InputReader in, OutputWriter out) {
arr = new int[3];
}
}
这是 Egor 谈论为什么需要这样做的链接。 http://codeforces.com/blog/entry/18974?#comment-357444 .
关于java - 在 chelper intelliJ 中编译后,全局数组括号被删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57911424/
我将 chelper 与 intelliJ 一起使用,编译后括号被删除。有什么办法解决这个问题吗? 这是我的代码在编译之前的样子: public class TaskA { int arr[]
我尝试了两天。但我总是一片空白。我在设置项目、添加依赖项以及创建任务时遇到了麻烦 - 它总是显示一些错误或其他错误。 我按照 here 的指示进行操作创建了一个象牙,当我尝试运行它时,最终出现了这个异
我最近发现了一个编码网站,有编码竞赛:CodinGame ,为了解决问题,我们只需要将它们交给一个带有main的文件(在下面的示例中,类Player),如果需要其他类,我们将它们包含在这个文件。 为了
我是一名优秀的程序员,十分优秀!