我正在分配作业,但不确定操作符':'会做什么。我也想知道我能用它代替什么。预先感谢!
public int getLargest() {
int largestInt = Integer.MIN_VALUE;
for(int [] row : matrix) {
for (int i : row) {
if (i > largestInt) {
largestInt = i;
}
}
} return largestInt;
}