Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是使用 eclipse 的新手,我完全不明白为什么它不喜欢我的 for 循环的第一行
public Practice(int n) { this.n=n; for(int i=0; i<n; i++){ (int j=0; j<n; j++) { this.decay=new double[i][j]; } } }
您缺少for第二个循环的关键字。更正:
for
public Practice(int n) { this.n=n; for(int i=0; i<n; i++){ for(int j=0; j<n; j++) { this.decay=new double[i][j]; } } }
您使用的是括号而不是花括号。
编辑 - 对不起,没有看你格式化它的方式。