Tagged Questions
The control-flow tag has no wiki summary.
47
votes
29answers
3k views
Why use a for loop instead of a while loop? [closed]
Possible Duplicates:
Iterate with for loop or while loop?
Loops in C - for() or while() - which is BEST?
When should one use a for loop instead of a while loop?
I think the following ...
25
votes
10answers
16k views
How to break out of multiple loops in Python?
Given the following code (that doesn't work):
while True:
#snip: print out current state
while True:
ok = get_input("Is this ok? (y/n)")
if ok == "y" or ok == "Y": break 2 ...
16
votes
2answers
352 views
Is non-local return in Scala new?
A colleague just showed me this and I was surprised that it compiled at all:
def toUpper(s: Option[String]): String = {
s.getOrElse(return "default").toUpperCase
// ^^^^^^ // a return ...
16
votes
11answers
1k views
Programming style: should you return early if a guard condition is not satisfied?
One thing I've sometimes wondered is which is the better style out of the two shown below (if any)? Is it better to return immediately if a guard condition hasn't been satisfied, or should you only do ...
15
votes
7answers
768 views
Are there any static Call-Graph and/or Control-Flow-Graph API for JavaScript?
Are there any Call-Graph and/or Control-Flow-Graph generators for JavaScript?
Call Graph - http://en.wikipedia.org/wiki/Call_graph
Control Flow Graph - ...
11
votes
5answers
260 views
Is this `try..catch..finally` redundant?
public Foo doDangerousStuff() throws Exception {
try {
dangerousMethod();
return new Foo();
} catch (Exception e) {
throw e;
} finally {
...
8
votes
7answers
252 views
How do I return from a function inside a lambda?
Consider the following toy code to determine whether a range contains an element:
template<typename Iter, typename T>
bool contains1(Iter begin, Iter end, const T& x)
{
for (; begin != ...
8
votes
2answers
257 views
Confusing control flow analysis from Parasoft C++test
We use Parasoft C++test to statically analyze our code. It's having trouble with code like the following:
void foo(int* x) {
try {
bar();
} catch(...) {
delete x;
...
8
votes
9answers
403 views
Live javascript debugging by recording function calls and parameters
Is there a debugging system that allows me to record javascript function calls and their parameters as they occur? this would allow me to trace and debug applications in live/client situations without ...
7
votes
2answers
164 views
How could I implement an early return from outside the body of a method in Scala?
Disclaimer: Before someone says it: yes, I know it's bad style and not encouraged. I'm just doing this to play with Scala and try to learn more about how the type inference system works and how to ...
7
votes
2answers
137 views
Weird stuff with curried function
I have this weird situation that I don't understand. I'm reading "Programming in Scala" book, Ch. 9.
Let's say I have a curried function:
def withThis(n:Int)(op:Int=>Unit){
...
7
votes
7answers
2k views
switch instanceof?
I have a question of using switch case for instanceof object:
For example: my problem can be reproduced in Java:
if(this instanceof A)
doA();
else if(this instanceof B)
doB();
else if(this ...
7
votes
8answers
2k views
How to exit an if clause
What sorts of methods exist for prematurely exiting an if clause?
There are times when I'm writing code and want to put a break statement inside of an if clause, only to remember that those can only ...
6
votes
4answers
380 views
Could Scala's “if … else” have been implemented as a library function?
I'm wondering if if … else could have been implemented in Predef with special compiler treatment, in a similar way to what's being done with classOf[A]: the definition is in Predef, the implementation ...
6
votes
2answers
89 views
COMEFROM control flow
According to wikipedia COMEFROM flow control is considered a joke, unreadable or downright harmful. I'd imagine such a feature would be very useful in AOP scenarios (ie. adding logger to methods ...
6
votes
1answer
157 views
Searching for a nice way to define rules for decompiler, need advice
I am working on a very simple decompiler for MIPS architecture and as I progress I have to define lots of rules for code analysis, for example "if this opcode is lui and next opcode is addiu then ...
5
votes
2answers
238 views
Common Lisp condition system for transfer of control
I'll admit right up front that the following is a pretty terrible description of what I want to do. Apologies in advance. Please ask questions to help me explain. :-)
I've written ETLs (Extract, ...
5
votes
11answers
1k views
How Can I Avoid Using Exceptions for Flow Control?
I have been assigned a project to develop a set of classes that act as an interface to a storage system. A requirement is that the class support a get method with the following signature:
public ...
4
votes
1answer
163 views
What is the best control flow module for node.js?
I've used caolan's async module which is very good, however tracking errors and the varying way of passing data through for control flow causes development to sometimes be very difficult.
I would ...
4
votes
4answers
175 views
Insufficient control flow analysis of enum switch in GCC
In the following C++ code:
typedef enum { a, b, c } Test;
int foo(Test test) {
switch (test) {
case a: return 0;
case b: return 1;
case c: return 0;
}
}
a warning ...
4
votes
3answers
218 views
Limiting TCP sends with a “to-be-sent” queue and other design issues
This question is the result of two other questions I've asked in the last few days.
I'm creating a new question because I think it's related to the "next step" in my understanding of how to control ...
4
votes
5answers
3k views
Automate tracing in GDB
I have been trying to find a way for some time to automate the progress in GDB of tracing the control flow of a program.
Even just a simple way of automating the 'n' command so you can see what order ...
3
votes
1answer
66 views
How to implement whileTrue control flow method with Obj-C Blocks?
Is it possible to implement something like a Smalltalk-style whileTrue: method in Objective-C using blocks? Specifically, instead of:
int count = 0;
while (count < 10)
{
NSLog(count);
count++;
...
3
votes
1answer
137 views
Can “if” be implemented using “call/cc”?
I've been told that "call/cc" can be used to implement arbitrary control flow constructs so I'm trying to implement all such constructs using "call/cc" but I'm having trouble. Assuming I didn't have ...
3
votes
3answers
114 views
Evaluating a series of criteria with nested ifs in R - is there a better way?
Much of my work revolves around diagnostic tests for tuberculosis. As you might imagine, it's handy to be able to quickly evaluate and validate the outputs of those tests. I wrote a function that ...
3
votes
4answers
111 views
avoiding code duplication in Python code redux
This is a followup to an earlier question. I got some good suggestions for that, so I thought I would try my luck again.
from itertools import takewhile
if K is None:
illuminacond = lambda x: ...
3
votes
3answers
75 views
How can I restructure this control flow to avoid use of goto?
As a homework assignment for my introductory programming course I have to design and implement a program that generates a random number(1-100), then gives the player 7 guesses to correctly guess the ...
3
votes
3answers
390 views
Implementing ifTrue, ifFalse, ifSome, ifNone, etc. in Scala to avoid if(…) and simple pattern matching
In Scala, I have progressively lost my Java/C habit of thinking in a control-flow oriented way, and got used to go ahead and get the object I'm interested in first, and then usually apply something ...
3
votes
4answers
173 views
Can my tortoise vs. hare race be improved?
Here is my code for detecting cycles in a linked list:
do
{
hare = hare.next();
if (hare == back) return;
hare = hare.next();
if (hare == back) return;
tortoise = ...
3
votes
4answers
118 views
Does the construct do .. while(false) contribute to better control flow?
I've recently come across this code:
do {
if ( ! checkSomething() )
break;
// some code
if ( ! checkSomeOtherThing() )
break;
// some other code
} while(false);
// ...
3
votes
7answers
284 views
How can I rewrite this (cleanly) without gotos?
How can I do this cleanly without gotos?
loop:
if(condition1){
something();
} else if (condition2) {
somethingDifferent();
} else {
mostOfTheWork();
goto loop;
}
I'd prefer ...
3
votes
4answers
1k views
Java: Exceptions as control flow?
I've heard that using exceptions for control flow is bad practice. What do you think of this?
public static findStringMatch(g0, g1) {
int g0Left = -1;
int g0Right = -1;
int g1Left = -1;
...
2
votes
2answers
78 views
How to “break” out of a case…while in Ruby
So, I've tried break, next and return. They all give errors, exit of course works, but that completely exits. So, how would one end a case...while "too soon?"
Example:
case x
when y; begin
...
2
votes
1answer
165 views
What is the correct control flow for getting a one-time fix on the user's location (via GPS)?
I'm looking to find the "correct" way to get a fix on the user's location as a one-time task. At the moment, my execution flow is roughly:
The user presses a button.
The handler (contained in the ...
2
votes
2answers
794 views
Building a control-flow graph from an AST with a visitor pattern using Java
I'm trying to figure out how to implement my LEParserCfgVisitor class as to build a control-flow graph from an Abstract-Syntax-Tree already generated with JavaCC. I know there are tools that already ...
2
votes
6answers
263 views
equivalent of Python's “with” in Ruby
In Python, the with statement is used to make sure that clean-up code always gets called, regardless of exceptions being thrown or function calls returning. For example:
with open("temp.txt", "w") as ...
2
votes
1answer
142 views
How does ASP.NET HttpServerUtility.Transfer break the control flow?
By "how does" I mean "by what mechanism" not "to what effect". Control doesn't return to the calling method after you call Server.Transfer("...");. At the language runtime level, how does this ...
2
votes
6answers
197 views
Control flow syntax in c++
With the following c++ example(indention was left out in purpose).
if(condA) // if #1
if(condB) // if #2
if(condC) // if #3
if(condD) // if #4
funcA();
else ...
2
votes
5answers
96 views
programming 101, select VS if block
I'm not sure I understand the difference between an if block and switch/select block.
I mean I use them all the time. But It's not clear to me when the switch block should be applied and when no to. ...
2
votes
3answers
530 views
Java - Handling Non-Blocking Calls
In my application I am using a third-party API. It is a non-blocking method which returns immediately. I have a collection of elements over which I have to invoke this method.
Now, my problem is that ...
2
votes
10answers
373 views
Is this control of flow structure good practice?
I want to re-write a method that has way too many nested if statements.
I came up with this approach and wanted your opinions:
public void MyMethod()
{
bool hasFailed = false;
try
{
...
1
vote
4answers
76 views
Can I avoid if-elsif-else in this ruby function?
I have three values (foo,bar,bad) and based on which one I pass into a function I want to use the other two.
For example calling self.method(foo) would result in something like this with foo being ...
1
vote
3answers
47 views
Comparing exceptions
This is my scenario, I have a list of exceptions of contains arbitrary exceptions like from different hierarchy, and the bellow code snaps will explain what I need to do
private ...
1
vote
3answers
118 views
How can you Interupt a function from a GUI callback without adding an interupt-check to the function? (MATLAB)
So, I've a GUI that basically allows the user to iteratively process data. Thus, there is a start/stop button and a display that shows the current state of the data. When you click the start button, ...
1
vote
4answers
104 views
branching based on two boolean variables
Suppose I have two boolean variables, and I want to do completely different things based on their values. What is the cleanest way to achieve this?
Variant 1:
if (a && b)
{
// ...
}
...
1
vote
2answers
478 views
How can I stop a package execution based on a stored procedure output?
I have an SSIS package that the first task executes a stored procedure to verify that the run date is not a holiday. If it is a holiday, then it returns a record set with a count of 1.
I want to ...
1
vote
0answers
36 views
Search In paths of the control flow graph
Many times I'm having a problem with printing in function foo, and I want to look for all occurences of Print in code which is reachable in the Control Flow Graph from function foo. Or in all code in ...
1
vote
2answers
130 views
Python cmd interpreter adding if statements
For one of my projects I have a python program built around the python cmd class. This allowed me to craft a mini language around sql statements that I was sending to a database. Besides making it far ...
1
vote
5answers
184 views
avoiding code duplication in Python code
Consider the following Python snippet:
af=open("a",'r')
bf=open("b", 'w')
for i, line in enumerate(af):
if i < K:
bf.write(line)
Now, suppose I want to handle the case where K is ...
1
vote
3answers
130 views
Control flow of the try…catch…finally control structure
I have a try...catch...finally block whose catch rethrows the exception:
try
{
startBombCountdownAndRunAsFastAsYouCan();
}
catch (BombExplodedOnYourFaceException ex)
{
displayMessage("Hahaha! ...