Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

57
votes
45answers
6k views

Break statements In the real world [closed]

Been having a discussion on whirlpool about using break statements in for loops. I have been taught and also read elsewhere that break statements should only be used with switch statements and with ...
39
votes
4answers
1k views

Why does C# have break if it's not optional?

When I create a switch statement in VS2008 C# like this (contrived): switch (state) { case '1': state = '2'; case '2': state = '1'; } it complains that I'm not allowed to ...
25
votes
19answers
4k views

It it a bad practice to use break in a for loop? [closed]

Possible Duplicate: Break statements In the real world Hi, Is it a bad practice to use break statement inside a for loop? Say, I am searching for an value in an array. Compare inside a ...
25
votes
10answers
7k views

How to break 2 loops in javascript?

I tried this: for(i=0;i<5;i++) { for(j=i+1;j<5;j++) { break(2); } alert(1) }; only to get: SyntaxError: missing ; before statement
23
votes
14answers
6k views

How to break out of a loop from inside a switch?

I'm writing some code that looks like this: while(true) { switch(msg->state) { case MSGTYPE: // ... break; // ... more stuff ... case DONE: break; // **HERE, I ...
20
votes
9answers
741 views

Get out of multiple loops? [closed]

Possible Duplicate: Breaking out of a nested loop I have this code foreach (___) { foreach (___) { foreach (___) { if (condition) { ...
20
votes
7answers
5k views

How do I break out of a loop in Scala?

For Problem 4 of Project Euler How do I break out a loop? var largest=0 for(i<-999 to 1 by -1) { for (j<-i to 1 by -1) { val product=i*j if (largest>product) // I want to break out ...
20
votes
9answers
5k views

Can I use break to exit multiple nested for loops?

Is it proper to use the break function to exit several nested for loops? If so, how would you go about doing this? Can you also control how many loops the break exits?
15
votes
6answers
602 views

Simple for loop not working

I've just started learning programming. I'm studying for loops but this program does not work as expected. I want to break the loop when $a is equal to 3 so that I get the output 1 2 but I get 3 as ...
15
votes
4answers
2k views

How to Break out of multiple loops at once in C#?

What if I have nested loops, and I want to break out of all of them at once? while (true) { // ... while (shouldCont) { // ... while (shouldGo) { // ... ...
13
votes
13answers
1k views

Why do we need break after case statements?

Why doesn't the compiler automatically put break statements after each code block in the switch? Is it for historical reasons? When would you want multiple code blocks to execute?
11
votes
4answers
352 views

Is this a valid (ab)use of lambda expressions?

Like we all know, it's not that easy to break from a nested loop out of an outer loop without either: a goto (Example code.) another condition check in the outer loop (Example code.) putting both ...
10
votes
8answers
260 views

Why does Java allow for labeled breaks on arbitrary statements?

I just learned today that the following Java code is perfectly legal: myBlock: { /* ... code ... */ if (doneExecutingThisBlock()) break myBlock; /* ... more code ... */ } Note ...
9
votes
14answers
828 views

What is a neat way of breaking out of many for loops at once?

Suppose I need to break out of three or four nested for loops at once at the occurence of some event inside the innermost loop. What is a neat way of doing that? what I do is use flags like this: ...
8
votes
11answers
917 views

C++: break the main loop

I am preparing some code: for(int a = 1; a <= 100; a++) //loop a (main loop) { for(int b = 1000; b <= 2000; b++) //loop b { if(b == 1555) break; } ...
8
votes
3answers
8k views

ANDROID: Line Break in XML formatting?

when editing a String in XML I need to add line breaks. And I wanted to ask what is the RIGHT form when programming for android? Because <br> works but ECLIPSE marks the area as problematic. If ...
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: ...
7
votes
3answers
125 views

Naming Loops in Python

I recently read this question which had a solution about labeling loops in Java. I am wondering if such a loop-naming system exists in Python. I have been in a situation multiple times where I do ...
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; ...
7
votes
9answers
830 views

I've heard that some “break”s aren't bad practice. What about this one?

I have often heard that using breaks in Java is considered bad practice, but after reading some threads on Stack Overflow, I've seen otherwise. Many say that it is acceptable in certain cases. I'm a ...
7
votes
9answers
2k views

Advanced switch statement within while loop?

I just started C++ but have some prior knowledge to other languages (vb awhile back unfortunately), but have an odd predicament. I disliked using so many IF statements and wanted to use switch/cases ...
6
votes
5answers
234 views

How to exit two nested loops

I have been using java for quite some time, yet my education in loops is somewhat lacking. I know how to create every loop that exists in java and break out of the loops as well. However, I've ...
6
votes
2answers
273 views

VIM: How to change the Showbreak Highlight color without using the NonText Color-element

I noted that the 'showbreak' symbol is highlighted with the highlight "NonText" color-element. NonText is also used for the EOL Characters. I would like to keep the highlight-color for the EOL ...
6
votes
10answers
371 views

how can we go out from 4 inner for loops?

Hi I am beginner in java and my program has 4 for loops: my program works like this that if b is true ,the element will be removed from pointList and n will be n-- and the I want to go out from all ...
6
votes
3answers
216 views

Break out out forloop but within switch statement php

When I normally want to break out of a foreach loop before all of the iterations have completed I simply use a break; statement. e.g. foreach($nodelist as $node) { if($metCriteria) { break; ...
6
votes
5answers
442 views

Why does this break statement break not work?

I have the following code: public void post(String message) { final String mess = message; (new Thread() { public void run() { while (true) { try { ...
6
votes
3answers
622 views

Why the c# compiler requires the break statement in switch construction?

I'm having hard time understanding, why the compiler requires using break statement. It's not possible to miss it since the fall through is now allowed. I see the reason for the break in C or C++, but ...
6
votes
4answers
2k views

How do I get GDB to break out of a loop?

I can tell GDB to return from a function immediately with return, and call a function with call myFunction. But how do I get it break out of the current loop? i.e. to act as if it's hit a break; ...
6
votes
11answers
2k views

break out of a loop that contains a switch statement (C#)

I am having trouble figuring out how to break out of a loop that contains a switch statement. Break breaks out of the switch, not the loop. There is probably a more elegant solution to this. I have ...
6
votes
9answers
775 views

Is 'break' evil? [closed]

I have heard several times in my career that the break operator is evil because it may cause internal exceptions (at least in older languages) or something else. I never thought so. But I would like ...
5
votes
2answers
91 views

break and label in java

I have a code like this: if(condition1) { break MyLabel; } while(true) { //some code here MyLabel: if(condition2) break; //more code here } ...
5
votes
9answers
122 views

What is the best way to force a try block to break in between?

I have a try-catch block that I wish to break like a switch block but I couldn't find a recommended way of doing it. I'm fetching a lot of data in the try-catch block and wish to stop the fetching in ...
5
votes
4answers
95 views

Breaking loop when “warnings()” appear in R

I am having an issue: I am running a loop to process multiple files. My matrices are enormous and therefore I often run out of memory if I am not careful. Is there a way to break out of a loop ...
5
votes
6answers
145 views

Help with switch statement

I am relatively new to java. In a switch statement, do you have to put a break statement after each case?
5
votes
4answers
165 views

PHP include/require within a function

Is it possible to have return statements inside an included file that is inside a function in PHP? I am looking to do this as I have lots of functions in separate files and they all have a large ...
5
votes
6answers
222 views

How to break out of a function

If I have a function as follows: void func () { //... if (condition) { break; } } When I use break it gives me an error. Is there another way to exit a function using an if ...
5
votes
5answers
174 views

coding variable values into classes using R

I have a set of data in which I need to code values of certain variables (numeric) into 3 classes. My data set is similar to this but has 60 more variables: anim <- ...
5
votes
2answers
337 views

How do I break an outer loop from an inner one in Perl?

Suppose I have a piece of Perl code like: foreach my $x (@x) { foreach my $y (@z) { foreach my $z (@z) { if (something()) { # I want to break free! } # do stuff } # do stuff } ...
5
votes
3answers
226 views

In Scala, how to stop reading lines from a file as soon as a criterion is accomplished?

Reading lines in a foreach loop, a function looks for a value by a key in a CSV-like structured text file. After a specific line is found, it is senseless to continue reading lines looking for ...
5
votes
3answers
2k views

How to break out of a nested parallel (OpenMP) Fortran loop idiomatically?

Here's sequential code: do i = 1, n do j = i+1, n if ("some_condition(i,j)") then result = "here's result" return end if end do end do Is there a cleaner way to ...
5
votes
5answers
1k views

Do I have to break after throwing exception?

I'm writing a custom class in C# and I'm throwing a couple exceptions if people give the wrong inputs in some of the methods. If the exception is thrown, will any of the code in the method after the ...
5
votes
1answer
3k views

How to send interrupt key sequence to a Java Process?

I've got a handle to a Java Process instance and its associated streams. It's a console program. I'd like to simulate a break sequence. On Windows this is Ctrl-C. Is this possible without natives? ...
4
votes
3answers
118 views

PHP XDebug disable breaking on each request

I'm writing a webapplication that uses JS and PHP. Each time I refresh I get about 5 ajax calls to my php script. This is getting quite annoying using XDebug since it breaks on each of those request ...
4
votes
6answers
389 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
4answers
194 views

break statement in finally clause java

public class FinallyTest { static int i=0; public static void main(String a[]){ while(true){ try{ i=i+1; return; }finally{ ...
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
3answers
125 views

Is there a way to break this dependency for unit testing?

My class A is dependent to class B. Here is the code //declaration class A { public: A(B *b); ~A(); void m1(); private: B *ptr_b; }; //implementation A::A(B *b) { ptr_b = b; } ...
4
votes
2answers
2k views

HTML5 canvas ctx.fillText won't do line breaks?

I can't seem to be able to add text to a canvas if the text includes "\n". I mean, the line breaks do not show/work. ctxPaint.fillText("s ome \n \\n <br/> thing", x, y); The above code will ...
4
votes
1answer
170 views

Rewriting JavaScript break-to-label in Ruby

I'm porting a JavaScript library to Ruby, and have come across the following insanity (heavily abbreviated): function foo(){ if (foo) ... loop: while(go()){ if (...) break; ...
4
votes
2answers
482 views

Is using label's in JavaScript bad practice?

I just found out about using label's in JavaScript, such as: for(var i in team){ if(i === "something"){ break doThis: //Goto the label }else{ doThat(); } } doThis: ...

1 2 3 4 5