[关闭]
@tsing1226 2016-10-21T20:11:24.000000Z 字数 525 阅读 922

java

continue语句


continue语句一般会存在while、for、或do-while循环语句中,使用该语句时出现则该判断语句不执行,不跳出循环。
* 举例:输出1到10所有的奇数。
代码如下:

  1. public class BreakStatement {
  2. public static void main(String[] args) {
  3. int[] array = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
  4. System.out.println("所有的奇数为:");
  5. int arraySize = array.length;
  6. for (int i = 0; i < arraySize; i++) {
  7. if (array[i] % 2 == 0) {
  8. continue;
  9. } else {
  10. System.out.println("array[" + i + "] = " + array[i]);
  11. }
  12. }
  13. }
  14. }

输出结果:

  1. 所有的奇数为:
  2. array[0] = 1
  3. array[2] = 3
  4. array[4] = 5
  5. array[6] = 7
  6. array[8] = 9

参考文献

https://examples.javacodegeeks.com/java-basics/break-continue-statement/continue-statement/

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注