Tagged Questions
132
votes
6answers
34k views
Equivalent of “continue” in Ruby
In C and many other languages, there is a continue keyword that, when used inside of a loop, jumps to the next iteration of the loop. Is there any equivalent of this continue keyword in Ruby?
0
votes
5answers
9k views
Continue in while inside foreach
In the following C# code snippet
I have a 'while' loop inside a 'foreach' loop and I wish to jump to the next item in 'foreach' when a certain condition occurs.
foreach (string objectName in ...
45
votes
5answers
48k views
Continue keyword in Java
I saw this keyword for the first time and I was wondering if some one could explain to me what it does. The situation in which I saw the keyword was:
if(obj.isFlagSet())
;
else
continue;
...