A language construct typically used to bypass the rest of a loop and return to the beginning for the next iteration.

learn more… | top users | synonyms

9
votes
8answers
27k views

Nested jQuery.each() - continue/break

Consider the following code: var sentences = [ 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.', 'Vivamus aliquet nisl quis velit ornare tempor.', 'Cras sit amet ...
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; ...
22
votes
17answers
2k views

Continue Considered Harmful? [closed]

Should developers avoid using continue in C# or its equivalent in other languages to force the next iteration of a loop? Would arguments for or against overlap with arguments about Goto?
19
votes
9answers
25k views

'CONTINUE' keyword in Oracle 10g PL/SQL

I'm migrating a TSQL stored procedure to PL/SQL and have encountered a problem - the lack of a CONTINUE keyword in Oracle 10g. I've read that Oracle 11g has this as a new feature, but upgrading is ...
1
vote
3answers
1k views

Why is continue inside a loop a bad idea?

Douglas Crockfod says that it is usually better to refactor the continue inside the loop. Why is continue considered bad within a loop?
-1
votes
1answer
87 views

How to make a something continue until its true in android

Okay so in my program i have something that when the database KEY_TITLE is empty them it says a certain thing until the user goes till the main menu to do something. My question is how do i check to ...
9
votes
11answers
12k views

Continue in nested while loops

In this code sample, is there any way to continue on the outer loop from the catch block? while { // outer loop while { // inner loop try { throw; } ...
10
votes
3answers
2k views

Is it posible to use 'yield' to generate 'Iterator' instead of a list in Scala?

Is it posible to use yield as an iterator without evaluation of every value? It is a common task when it is easy to implement complex list generation, and then you need to convert it into Iterator, ...
1
vote
3answers
3k views

Continue an interrupted download on iPhone

I use NSURLConnection to download large files from the web on iPhone. I use the "didReceiveData" method to append data to a file in the Documents folder. It works fine. If the download is interrupted ...
6
votes
5answers
3k views

Example use of “continue” statement in Python?

The definition of the continue statement is: "The continue statement continues with the next iteration of the loop." I can't find any good example of code. Could someone suggest some simple cases ...
1
vote
7answers
5k views

Why can't I use 'continue' inside a switch statement in Java?

Why is it that the following code: class swi { public static void main(String[] args) { int a=98; switch(a) { default:{ ...
0
votes
2answers
215 views

Countdown timer stops running in background

I have implemented a countdown timer in an application of mine. It runs in the background fine and dandy, but when i use advanced task killer, it stops the timer and the only way to restart it is to ...
9
votes
3answers
10k views

Continue on Except of a Try block in Python

I'd expect this to be a duplicate, but I couldn't find it. Here's Python code, expected outcome of which should be obvious: x = {1: False, 2: True} # no 3 for v in [1,2,3]: try: print x[v] ...
4
votes
8answers
2k views

Python: How to tell the for loop to continue from a function?

Sometimes I need the following pattern within a for loop. At times more than once in the same loop: try: var = 'attempt to do something that may fail on a number of levels' except ...
1
vote
8answers
5k views

Python - Way to restart a for loop, similar to “continue” for while loops?

Basically, I need a way to return control to the beginning of a for loop and actually restart the entire iteration process after taking an action if a certain condition is met. What I'm trying to do ...
0
votes
5answers
1k views

Why it is a bad practice to use break/continue labels in OOP (e.g. Java, C#) [closed]

I was told that using break and continue labels in OOP language is not OOP programming style. Can you explain in detail why and what is a problem? The trick was with this label word. I meant labeled ...