Java Loops: break ... break can be used to exit a loop in the middle of an iteration: while (…) { … if (condition) { break ; } … } ... break works precisely the ...
確定! 回上一頁