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

0
votes
1answer
24 views

Is there any way to skip migrations which are failing?

I want to run migration on my server for ruby on rails project but I am getting this kind of error with postgres- PGError: ERROR: relation "last_message_read" already exists : CREATE TABLE ...
1
vote
3answers
147 views

for loop in va_list procedure, continue used aimlessly(?) K&R

Good afternoon! I have some doubts about following code. [1] What does the middle condition in the for loop mean? ; *p; and ; *sval; - reaching an end of input string? If yes, how is it determined? ...
0
votes
5answers
1k views

vb.net continue for inside a for each

i have a for each loop inside a for loop, the for each loop checks if a value in some column in the current row exists in an array, if it exists i want to do whats in the for loop and if it doesnt ...
5
votes
4answers
470 views

Why are “continue” statements bad in Javascript?

In the book Javascript: The Good Parts by Douglas Crockford, this is all the author has to say about the continue Statement: The continue statement jumps to the top of the loop. I have never seen ...
1
vote
4answers
166 views

C# for continue inside foreach [duplicate]

Possible Duplicate: continue and break with an extended scope i have one problem. I don't know how to call continue for "for" inside foreach. Code: for(int i = 0; i < ...; i++) { ...
0
votes
1answer
658 views

Using Continue Statement in nested for loop in Python

Hi I have a function that read in data from two files. What I want to be happening is that the outer loop starts to read in the the first file and if lum from the first file is greater than the ...
0
votes
6answers
551 views

Using continue in a do-while loop

MDN states: When you use continue without a label, it terminates the current iteration of the innermost enclosing while, do-while or for statement and continues execution of the loop with the next ...
1
vote
2answers
103 views

Python continue from the point where exception was thrown

Hi is there a way to continue from the point where exception was thrown? eg I have the following psudo code unique code 1 unique code 2 unique code 3 if I want to ignore the exceptions of any of ...
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 ...
0
votes
4answers
163 views

GOTO/Continue in Java Dynamic Programming

I have the following piece of code in Java implementing dynamic programming recursiverelatio: public double routeCost() throws Exception { double cost = Double.MAX_VALUE; for (int l=i; ...
2
votes
2answers
70 views

why those two points are php tips?

i'm reading a blog that give something php coding tips.there are two places I don't understand. less/not use continue. the structure : do{ if(true) { break; } if(true) { break; ...
2
votes
1answer
386 views

Python script embedded in bash, does not exit

I'm having a curious problem. I have a bash script that is calling a python script within it. The python script executes successfully, but never fully terminates Content of Bash script: #! ...
2
votes
1answer
120 views

“continue” and “break” for static analysis [closed]

I know there have been a number of discussions of whether break and continue should be considered harmful generally (with the bottom line being - more or less - that it depends; in some cases they ...
0
votes
1answer
657 views

Edit and continue does not work anymore

I got recently problems with VisualStudio, when trying to debug and edit: Changes not allowed when unmanaged debugging is enabled? I have checked all projects of my solutions and all list this: ...
1
vote
1answer
117 views

How to make an iOS app start where it left off

I'm making an iOS app through UIStoryboard mode and I wanted to know if there was a way to add something so when the user leaves the application, it'll continue where the user left off next time he ...
2
votes
1answer
534 views

Python: Using continue in a try-finally statement in a loop

Will the following code: while True: try: print("waiting for 10 seconds...") continue print("never show this") finally: time.sleep(10) Always print the ...
2
votes
2answers
389 views

Labeled-break/continue in C# or Fortran 95 loops?

I've been tasked in a homework assignment with converting a loop in C# into Fortran 95. outerLoop: for(row = 0; row < numRows; rows++){ for(col = 0; col < numCols; col++){ ...
2
votes
4answers
252 views

how to save and retrive data from the last run of an android application?

I have to create a small android application for my college course work which presents 10 maths problems and take answers from users to calculate the score. The program is supposed to have a main ...
12
votes
6answers
2k views

Is there a different between `continue` and `pass` in a for loop in python?

Is there any significant difference between between the two python keywords continue and pass like in the examples for element in some_list: if not element: pass and for element in ...
1
vote
1answer
109 views

FireBug 1.7.3 won't break on any error, after continuing, even “debugger” statements

There's an error in my code where a function is called, and the function doesn't exist. It doesn't matter, since it's just a callback that's unimportant. So when FireBug stopped on this error, I ...
3
votes
3answers
6k views

BASH, check if file exists and continue else exit

I have a script that is 1 script in a chain of others that sends an email. Want to insert something at the start of the script that checks if a file exists and only if it exists I need it to continue ...
0
votes
2answers
176 views

wait for an Input just 1 second otherwise continue

I wanted just to implement this algorithm by C on Ubuntu: wait for a certain time to receive input from keyboard, so, by getting possible input or by over time, the program should be continued. I ...
1
vote
1answer
94 views

Continue to perform method even when it's ViewController disappear in iOS

I have a view that pushes another view with navigation controller. In this second view I play an audio which I want to continue playing even when the user gets back to the first view, popping the ...
7
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 ...
0
votes
2answers
2k views

Loop first run continue in shell script

How to break out of infinite while loop in a shell script? I want to implement the following PHP code in shell script(s): $i=1; while( 1 ) { if ( $i == 1 ) continue; if ( $i > 9 ) break; ...
28
votes
5answers
661 views

Why is `continue` not allowed in a `finally` clause in Python?

The following code raises a syntax error: >>> for i in range(10): ... print i ... try: ... pass ... finally: ... continue ... print i ... File ...
1
vote
4answers
302 views

Continue in while with mysql_fetch_assoc

I have a few lines of code, but can't find the right way to use it properly. $cc = 0; $tt = 50; while ($row = mysql_fetch_assoc($result)) { //building array with values from DB. if (++$cc < ...
0
votes
2answers
130 views

How to I finish the “continue;” That i putted after the if statement?

I made a statement and if it is true it continues, I want to stop this "continue" and make another statement for example touchdown and touchup. here is my code private void updateRunning(float ...
2
votes
2answers
242 views

how to program wait and continue in this bash script

I have two shell scripts say A and B. I need to run A in the background and run B in the foreground till A finishes its execution in the background. I need to repeat this process for couple of runs, ...
2
votes
9answers
2k views

When to use the Continue keyword | C#

Recently I was going through an open-source project and although I have been developing for several years in .NET, I hadn't stumbled across the continue keyword before. What are some best practices ...
0
votes
0answers
32 views

continue on collision

I've got a problem with my javascript collision detection function. Whenever a collision occurs a fixed object should not move and the player should continue but in other direction so he would go ...
0
votes
2answers
2k views

continue statement inside for loop and if condition

I have following code snippet and the output i am getting is 4. Please explain me if it takes i=2 or 0. I am confused. And How output was 4? int main() { int i=2; for(i=0;i<2;i++) { ...
2
votes
5answers
410 views

Linq to sql - delete and if fails continue

If I have a table like: StudentId | ... | SchoolId ___________|_____|__________ 1 | ... | SchoolA 2 | ... | SchoolA 3 | ... | SchoolB ... And I want to delete a list of ...
1
vote
2answers
755 views

Continue activity after screen orientation change - Android

i currently have a class that'll play audio Files, however if i tilt my screen to horizontal or portrait, it just restarts. How can i make my app continue from where it left off after i tilt my ...
2
votes
2answers
110 views

How to ignore/continue if TD does not contain an image?

I need to continue; if TD does not contain an image. I tried this: if(!$image){continue;} but that did not work. <?php ///////////////////////////////////////////////////////////////////// ...
0
votes
3answers
661 views

How to rewrite Java [continue <label> and break <label>] in C#?

In Java it's written like this.. when I was porting this code... realizied there is no such thing as break <label> and continue <label>. I know those commands were not included because ...
4
votes
6answers
2k views

C# - foreach loop within while loop - break out of foreach and continue on the while loop right away?

while (foo() == true) { foreach (var x in xs) { if (bar(x) == true) { //"break;" out of this foreach //AND "continue;" on the while loop. } } ...
-7
votes
6answers
3k views

what does continue mean?

for (PointCloud::const_iterator it = cloud->begin(); it != cloud->end(); ++it) { const float &x = it->x; const float &y = it->y; const float &z = ...
2
votes
4answers
2k views

Java Continue Label is Deprecated?

I have 2 fors, after the nested for I have some code which I don't want to execute if a condition is true inside the nested for. If I use break that code would execute, so (as I learned in SCJP) I ...
2
votes
0answers
557 views

RestTemplate, PUT method, and Expect: 100-CONTINUE

I'm a newbie to resttemplate and how it is backed by Apache http classes. So at first I thought all I needed to do was manually create http headers with Expect: 100 Continue in order to start ...
0
votes
3answers
534 views

Resetting the iterator in a for…in loop

This is part of the code I am using to draw some random circles: if(circles.length != 0) { //1+ circles have already been drawn x = genX(radius); y = genY(radius); var i = 0; ...
6
votes
4answers
932 views

Why is this labeled javaScript continue not working?

I am using this code to weather some circles are overlapping: iCantThinkOfAGoodLabelName: x = genX(radius); y = genY(radius); for(i in circles) { var thisCircle = circles[i]; ...
2
votes
7answers
2k views

c++ continue versus break

Which statement will be executed after "continue" or "break" ? for(int i = 0; i < count; ++i) { // statement1 ...
-1
votes
1answer
88 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 ...
-1
votes
6answers
165 views

What doesn't my C++ program work when I try to use recursion?

I need help with the following c++ code, trying to add a continue at the end of the program so that it will make a user specified dimension for rectangle and ask the user to redo the program again. ...
0
votes
4answers
918 views

PHP continue inside function

This is likely very trivial but I haven't been able to figure it out. This works: function MyFunction(){ //Do stuff } foreach($x as $y){ MyFunction(); if($foo === 'bar'){continue;} //Do ...
1
vote
2answers
645 views

php start php script and continue

At the moment I have a line of code like this: system("/usr/bin/php myphpscript.php --param=".val); Is there a way to make php not wait for the script to finish - and just move on instead? It's a ...
5
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 ...
2
votes
3answers
445 views

Continue loop Inside if statement vs. using the negation of the if statment inside the loop

For example lets consider the following 2 codes: for (i = 0; i < 1000; i++) { if ( i % 2 != 0) { continue; } else { ... } } and for (i = 0; i < 1000; i++) ...
3
votes
3answers
2k views

Perl programming: continue block

I have just started learning Perl scripting language and have a question. In Perl, what is the logical reason for having continue block work with while and do while loops, but not with for loop?