Tagged Questions
The program-flow tag has no wiki summary.
34
votes
10answers
2k views
Should I use early returns in C#?
I've learned Visual Basic and was always taught to keep the flow of the program without interruptions, like Goto, Exit and Return. Using nested ifs instead of one return statement seems very natural ...
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 ...
13
votes
1answer
518 views
Catch multiple exceptions in one line (except block)
I know that I can do:
try:
# do something that may fail
except:
# do this if ANYTHING goes wrong
I can also do this:
try:
# do something that may fail
except ...
5
votes
2answers
60 views
Should one use `if ($a != NULL)` or `if ($a !== NULL)` to control program flow?
This is perhaps a painfully basic question to answer, but I'm wondering about performance issues regarding using PHP's if identical !== versus if equal != to control flow.
Consider the following ...
5
votes
3answers
371 views
Accessing the containing class of an inner class in Java
This is what I'm doing now. Is there a better way to access the super class?
public class SearchWidget {
private void addWishlistButton() {
final SearchWidget thisWidget = this;
...
5
votes
3answers
655 views
How is GUI and Game Program Flow compared to Web programs
I've been developing Web applications for a while now and have dipped my toe into GUI and Game application development.
In the web application (php for me), a request is made to the file, that file ...
3
votes
4answers
144 views
Weird bug in Java try-catch-finally
I'm using JODConverter to convert .xls and .ppt to .pdf format. For this i have code something like
try{
//do something
System.out.println("connecting to open office");
...
2
votes
5answers
58 views
Proper disposal of filestreams and binary streams and disposing of filestreams
As it is, I tried error-proofing my code and ended up making it look quite messy.
I have a function set up to read a certain type of file. I want the function to return false if there was a problem, ...
2
votes
2answers
80 views
Current possibilities for tracing program flow in C#?
I have used Postsharp a few years ago to trace program flow during execution without needing to manually add trace statements to the methods.
Is there any other new ways to trace execution to to ...
2
votes
5answers
69 views
How do I understand a function that returns a function?
Here's the example code I'm struggling with:
function greaterThan(x) {
return function(y) {
return y > x;
};
}
var greaterThanTen = greaterThan(10);
show(greaterThanTen(9));
Is there a ...
2
votes
5answers
137 views
Program flow after an exception is thrown in C#
Hi I'm looking at some old c# code and noticing a lot of code like this:
void SomeFunction()
{
if (key.Length != Dimensions)
{
throw new KeySizeException();
}
else
{
...
2
votes
3answers
110 views
Java Profilers That Display Per Request Statistics and Program Flow
I'm looking for profilers that support per request profiling statistics, ideally along the programs flow (not the usual thread call stack). So basically a profiler call stack + sequential calls view ...
2
votes
2answers
224 views
Do we need to create a error handler for each subroutine?
I copy a piece of code from SO as an example. The subroutine contains an error handler. Should one make an error handler for all Subs?
Public Sub SubA()
On Error Goto ProcError
Connection.Open
...
2
votes
4answers
156 views
Writing redundant program flow statements for clarity or optimization reasons?
I am tagging this as C, though it certainly applies to many languages. The reason for this is the part of the question dealing with optimization, which is compiler dependent.
Sometimes we encounter ...
2
votes
6answers
54 views
How should I format this piece of code?
Here are two ways of calling callscript (in pseudocode):
using duplicate calls
if flag == true
flag = false
callscript
flag = true
else
callscript
endif
using an extra ...
2
votes
12answers
459 views
Java language convention; getters/setters
Public class Example {
private int number;
public Example(int number){
this.number = number;
}
public int getNumber(){
return number;
}
public void ...
2
votes
5answers
569 views
How to find out who is the caller of a method or function?
I want to write a debug function or method that will help print useful information. When it is called, I need:
the memory address of the calling object (if called by an object)
the method signature ...
1
vote
1answer
324 views
Executing a function after each-loop has completed
Hey there,
I'm working on a jQuery each()-loop containing an ajax-request an a setTimeout. That's giving me some issues with the program flow.
xml_queries: function (data) {
var values = [];
...
1
vote
4answers
122 views
Programming language without ELSE keyword - is it more complicated?
I'm working on a simple programming language for kids, based on Karel. For controlling program flow, I currently provide these facilities (in pseudocode):
defining parameterless procedures
if [not] ...
1
vote
5answers
151 views
C++ Program Flow: Sockets in an Object and the Main Function
I have a rather tricky problem regarding C++ program flow using sockets.
Basically what I have is this: a simple command-line socket server program that listens on a socket and accepts one connection ...
1
vote
10answers
448 views
Interupting program flow in C
Okay, here's my problem: I've got a loop running that increments the value of a variable each iteration, and I want to be able to hit a key on the keyboard to stop the loop and report the final value ...
1
vote
4answers
154 views
Creating a cancel scheme
I have a program that will analyzes source code. It can recursively go through a directory to find all projects, and then recursively go through the project to find all source code.
I want to ...
0
votes
2answers
94 views
Controlling program flow through memory addressees in c / c++
Sorry if the title is a little obscure, I am not a native speaker and had a bit of trouble formulating my idea...
Assuming I have all the necessary functions and objects for a collection of ...
0
votes
0answers
6 views
Embedded SQL program flow
I´ve got a question according ESQL. Everywhere, I read something about a precompiler. The precompiler takes the ESQL-parts in the code, but what does it do with them?
Does anyone have a piece of ...
0
votes
2answers
81 views
Better, or advantages in different ways of coding similar functions
I'm writing the code for a GUI (in C++), and right now I'm concerned with the organisation of text in lines. One of the problems I'm having is that the code is getting very long and confusing, and I'm ...
0
votes
1answer
15 views
program flow when ShowDialogue another window
consider the flowing scenario
chequeInfo = new Check();
Messenger.Default.Register<Check>(this, (a) => this.doSomething(a));
AddNewCheck j = new ...
0
votes
1answer
58 views
Strange program flow
I'm really puzzled by the following piece of code:
// Get the content text
String contentText = null;
Header contentEncodingHeader = m_httpEntity.getContentEncoding();
final String ...
0
votes
6answers
814 views
BASH spawn subshell for SSH and continue with program flow
I'm trying to write a shell script that automates certain startup tasks based on my location (home/campusA/campusB). I go to University and take classes in two different campuses (hence ...
0
votes
3answers
63 views
What's the cleanest way to branch based on which conditional broke a while loop in Javascript?
Say I've got this loop
while(condition1 && condition2 && condition3 && condition4){
browseReddit();
}
if (!condition1){}
if (!condition2){}
if (!condition3){}
if ...
0
votes
1answer
29 views
routing mvc on the web
I was wondering if anyone could possibly provide me some advice on how i could improve the routing (and/or architecture) to each 'section' of my application. (I'm writing in PHP5, and trying to use ...
0
votes
1answer
78 views
How do i make the mutex not be recusive?
I ran the code below expecting flow to be locked on the 2nd time i lock a mutex. After running it twice i realize it can lock many times (assuming in the same thread) without stopping. How do i change ...
-3
votes
2answers
93 views
confirming program flow
can someone tell if the code below would work fine?
class CriticalSection{
int iProcessId, iCounter=0;
public static boolean[] freq = new boolean[Global.iParameter[2]];
int busy;
//constructors
...