Tagged Questions
The function-exit tag has no wiki summary.
326
votes
48answers
28k views
Should a function have only one return statement? [closed]
Are there good reasons why it's a better practice to have only one return statement in a function?
Or is it okay to return from a function as soon as it is logically correct to do so, meaning there ...
24
votes
22answers
2k views
Why is “else” rarely used after “if x then return”?
This method:
boolean containsSmiley(String s) {
if (s == null) {
return false;
}
else {
return s.contains(":)");
}
}
can equivalently be written:
boolean ...
11
votes
22answers
837 views
What to put in the IF block and what to put in the ELSE block?
This is a minor style question, but every bit of readability you add to your code counts.
So if you've got:
if (condition) then
{
// do stuff
}
else
{
// do other stuff
}
How do you decide ...
3
votes
6answers
2k views
Javascript: Trigger action on function exit
Is there a way to listen for a javascript function to exit? A trigger that could be setup when a function has completed?
I am attempting to use a user interface obfuscation technique (BlockUI) while ...
1
vote
6answers
154 views
Quick question about returning from a nested statement
If I have something like a loop or a set of if/else statements, and I want to return a value from within the nest (see below), is the best way of doing this to assign the value to a field or property ...
0
votes
1answer
40 views
iPhone cocos2d [super onExit]; causing crash when touch event occurs.
Please help!
When I use:
-(void) onExit {
[super onExit];
}
my app crashes if the screen is touched in the next scene after onExit is called. The error points to:
-(void) touches:(NSSet*)touches ...
0
votes
1answer
306 views
Help me understand the MSDN _beginthreadex function example
There's this function on _beginthreadex MSDN page:
unsigned __stdcall SecondThreadFunc( void* pArguments )
{
printf( "In second thread...\n" );
while ( Counter < 1000000 )
Counter++;
...