gpt4 book ai didi

java - 在 chelper intelliJ 中编译后,全局数组括号被删除

转载 作者:行者123 更新时间:2023-12-02 09:31:37 31 4
gpt4 key购买 nike

我将 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/

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