Tagged Questions
The continue tag has no wiki summary.
30
votes
5answers
6k 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?
26
votes
5answers
320 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 ...
16
votes
18answers
2k views
Continue Considered Harmful?
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?
10
votes
9answers
444 views
C#: Nested conditionals vs continue statement
In using ReSharper recently, it is suggesting I reduce nesting in certain places by inverting if conditions and using the continue statements.
nested conditionals:
foreach(....)
{
...
10
votes
9answers
12k 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 ...
9
votes
6answers
9k 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;
...
8
votes
4answers
1k views
Using continue in a switch statement
I want to jump from the middle of a switch statement, to the loop statement in the following code:
while (something = get_something())
{
switch (something)
{
case A:
case B:
...
8
votes
4answers
3k views
Applescript equivalent of “continue”?
I have a simple 'repeat with' in an AppleScript, and would like to move on to the next item in the "repeat" conditionally. Basically I'm looking for something similar to "continue" (or break?) in ...
7
votes
8answers
1k views
ForEach() : Why can't use break/continue inside
Since ForEach() method loop through all a list members, Why cant use a break/continue clause while i can use them inside a normal foreach loop
lstTemp.ForEach(i=>
{
if (i == 3)
break;
...
5
votes
3answers
389 views
Is it posible in scala to use yield to generate Iterator instead of list?
Is it posible to use yield as iterator without evaluation every value?
It is common task when it is easy to implement complex list generation, and then you need to convert it into iterator because you ...
5
votes
11answers
5k 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;
}
...
4
votes
6answers
390 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.
}
}
...
4
votes
6answers
340 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 ...
4
votes
2answers
175 views
PHP why is continue n slower than using break
Please consider the following code:
$start = microtime();
for($i = 2; $i < 100; $i++)
{
for($y = 2; $y <= sqrt($i); $y++)
{
if($i%$y != 0)
{
continue;
...
4
votes
4answers
3k views
“Continue” (to next iteration) on VBScript
A colleague and I were trying to figure out a way of doing the equivalent of a "continue" statement within a VBScript "For/Next" loop.
Everywhere we looked we found people had no way to do this in ...
4
votes
5answers
7k 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 ...
3
votes
3answers
137 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];
...
3
votes
6answers
167 views
continue; used to skip many loops
Here is a schema of my code :
while (..)
{
for (...; ...;...)
for(...;...;...)
if ( )
{
...
continue;
}
}
What will ...
3
votes
3answers
2k 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]
...
3
votes
2answers
423 views
Can't use “continue <label>”
I am trying this code:
entLoop:for(var i:*in entities) {
for(var i2:*in ignoreEntities) {
if(entities[i].type==ignoreEntities[i2]) {
continue entLoop;
}
}
}
Why ...
3
votes
4answers
541 views
Why should I avoid using Java Label Statements?
Everywhere across the internet people say that you should avoid using label statements in java. However, I find them very useful in some cases, namely nested loops.
I cannot find satisfactory answers ...
2
votes
2answers
52 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
5answers
90 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 ...
2
votes
2answers
65 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
/////////////////////////////////////////////////////////////////////
...
2
votes
0answers
300 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 ...
2
votes
3answers
185 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?
2
votes
4answers
1k views
php foreach continue
I am trying to skip to the next iteration of the loop if certain conditions are not met. The problem is that the loop is continuing regardless.
Where have I gone wrong?
Updated Code sample in ...
2
votes
7answers
193 views
Java String initialization (part 2)
I asked this goofy question earlier today and got good answers. I think what I really meant to ask is the following:
String aString = ""; // Or = null ?
if(someCondition)
aString = "something";
...
2
votes
3answers
149 views
Why doesn't my continue execute the next when block in Perl 5.10?
When I run this:
use feature ':5.10';
$x=1;
given ($x) {
when(1) {
say '1';
$x = 2;
continue;
}
when (2) {
say '2';
}
}
This should print both 1 and ...
2
votes
3answers
1k views
In C++: Is it possible to have a named enum be continued in a different file?
For example:
Base class header file has:
enum FOO
{
FOO_A,
FOO_B,
FOO_C,
FOO_USERSTART
};
Then the derived class has:
enum FOO
{
FOO_USERA=FOO_USERSTART
FOO_USERB,
FOO_USERC
};
Just to be clear ...
1
vote
1answer
30 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 ...
1
vote
6answers
116 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
4answers
73 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 < ...
1
vote
9answers
202 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 ...
1
vote
3answers
203 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 ...
1
vote
7answers
182 views
c++ continue versus break
Which statement will be executed after "continue" or "break" ?
for(int i = 0; i < count; ++i)
{
// statement1 ...
1
vote
2answers
117 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 ...
1
vote
3answers
114 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++)
...
1
vote
2answers
80 views
Is Continue in Delphi 6?
I'm getting an error when I'm trying to replace a GoTo in a while loop with a Continue, but whenever I do I get an error reading "Statement expected, but expression of type 'Boolean' found". Is ...
1
vote
2answers
143 views
Python: Handle Missing Files from a Sequence
I have a program that's basically as follows:
for l in range(0,100):
file = open("C:/Twitter/json/user_" + str(l) + ".json", "r")
#do some stuff
file.close()
I am trying to figure out a way to ...
1
vote
1answer
230 views
weird behaviour of continue in while loop
I'm fairly new in TCL programming and by going through the basics I encountered the following code snippet:
set x 0;
while "$x < 3" {
set x [expr $x + 1]
if {$x >6} break;
if "$x ...
1
vote
1answer
301 views
Exception propagation through nested loops/calls
I'm having trouble understanding how exceptions should propagate. My code (quite similar to the generic code below) executes otherCode() and fails to continue outer when doSomething() throws the ...
1
vote
8answers
1k 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 ...
1
vote
3answers
103 views
Can I skip an indeterminate amount of steps for an enclosing loop? (Python)
This is perhaps a result of bad design, but here it goes. I wasn't quite sure how to explain this problem.
So I have code that iterates over a list of words. (This list does not change.) The code ...
1
vote
3answers
84 views
Is there a way to extract continuous feature in an 2D array
Say I have an array of number
a <- c(1,2,3,6,7,8,9,10,20)
if there a way to tell R to output just the range of the continuous sequence from "a"
e.g., the continuous sequences in "a" are the ...
1
vote
7answers
1k views
is there a way to continue an exception in c#?
When an unexpected exception occurs in your program (in the debugger). Sometimes you just want to skip it since killing the program at that point is more harmful than continuing. Or you just want to ...
1
vote
3answers
2k 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 ...
1
vote
4answers
10k views
C# Foreach Loop - Continue Issue
I have a problem with a continue statement in my C# Foreach loop.
I want it to check if there is a blank cell in the datagridview, and if so, then skip printing the value out and carry on to check ...
1
vote
7answers
637 views
Looping best practices
I have a very large loop that loops a 1000 rows. I exit the loop if magic value 1 is found. If magic value 1 is not found but magic value 2 is found then the loop needs to skip to the beginning. Right ...
0
votes
2answers
40 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 ...