在编译代码时,我遇到了一个以前从未发生过的意外错误,它说我无法从 int 转换为 Object ...
代码:
maxBundles = max;
bundleProgressBar.setMaximum(max);
bundleProgressLabel.setText("Updating Components...");
// Tell JS that the state is Installing.
Object[] arr = { 1 };
错误:
`103: error: incompatible types
[javac] Object[] arr = { 1 };`
我知道这是 eclipse 的问题,因为它以前工作过,所以我的问题是我可以改变什么来解决它......