What is the “continue” keyword and how does it work in Java?

前端 未结 13 1587
温柔的废话
温柔的废话 2020-11-22 11:34

I saw this keyword for the first time and I was wondering if someone could explain to me what it does.

  • What is the continue keyword?
  • How
13条回答
  •  太阳男子
    2020-11-22 11:53

    continue is kind of like goto. Are you familiar with break? It's easier to think about them in contrast:

    • break terminates the loop (jumps to the code below it).

    • continue terminates the rest of the processing of the code within the loop for the current iteration, but continues the loop.

提交回复
热议问题