Tagged Questions
if-statement is a control structure in many programming languages that lets program change execution flow depending on some condition.
60
votes
9answers
5k views
C# - Assignment in an if statement
I have a class Animal, and its subclass Dog.
I often find myself coding the following lines:
if (animal is Dog)
{
Dog dog = animal as Dog;
dog.Name;
...
}
For the variable ...
46
votes
12answers
2k views
Does IF perform better than IF-ELSE?
Which one of these blocks of code performs better, and which one of them is more readable?
I'd guess the gain would be negligible, particularly in the second block. I am just curious.
Block #1
...
40
votes
14answers
2k views
Is the “if” statement considered a method?
Interesting discussion came up among my peers as to whether or not the "if" statement is considered a method? Although "if" is appended with the word statement it still behaves similar to a simple ...
32
votes
8answers
782 views
What's the reasoning behind putting constants in if statements first?
I was looking at some example C++ code for a hardware interface I'm working with and noticed a lot of statements along the following lines:
if ( NULL == pMsg ) return rv;
I'm sure I've heard people ...
29
votes
5answers
5k views
If vs. Switch Speed
Switch statements are typically faster than equivalent if-else-if statements (as e.g. descibed in this article) due to compiler optimizations.
How does this optimization actually work? Does anyone ...
29
votes
15answers
18k views
Python style: multiple-line conditions in IFs
Sometimes I break long conditions in IFs to several lines. The most obvious way to do this is:
if (cond1 == 'val1' and cond2 == 'val2' and
cond3 == 'val3' and cond4 == 'val4'):
...
26
votes
6answers
777 views
C++, variable declaration in 'if' expression
What's going on here?
if(int a = Func1())
{
// Works.
}
if((int a = Func1()))
{
// Fails to compile.
}
if((int a = Func1())
&& (int b = Func2()))
)
{
// Do stuff with a and ...
25
votes
7answers
747 views
Why does (0 == 'Hello') return true in PHP?
Hey, if you have got the following code and want to check if $key matches Hello I've found out, that the comparison always returns true if the variable is 0. I've came across this when an array for a ...
25
votes
14answers
2k views
Refactoring if/else logic
I have a java class with a thousand line method of if/else logic like this:
if (userType == "admin") {
if (age > 12) {
if (location == "USA") {
// do stuff
...
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 ...
22
votes
9answers
1k views
Python elegant assignment based on True/False values
I have a variable I want to set depending on the values in three booleans. The most straight-forward way is an if statement followed by a series of elifs:
if a and b and c:
name = 'first'
elif a ...
22
votes
8answers
1k views
Do else if statements exist in C#?
I have come across the following code in C#.
if(condition0) statement0;
else if(condition1) statement1;
else if(condition2) statement2;
else if(condition3) statement3;
...
else if(conditionN) ...
22
votes
17answers
3k views
Why is the 'if' statement considered evil?
I just came from Simple Design and Testing Conference. In one of the session we were talking about evil keywords in programming languages. Corey Haines, who proposed the subject, was convinced that ...
21
votes
17answers
2k views
Do all programming languages have boolean short-circuit evaluation?
In the PHP code
if(a() && b())
when the first argument is false, b() will not be evaluated.
Similarly, in
if (a() || b())
when the first argument is true, b() will not be evaluated..
...
20
votes
8answers
2k views
Is the conditional operator slow?
I was looking at some code with a huge switch statement and an if-else statement on each case and instantly felt the urge to optimize. As a good developer always should do I set out to get some hard ...
20
votes
23answers
2k views
Is it acceptable to only use the 'else' portion of an 'if-else' statement?
Sometimes, I feel like it is easier to check if all of the conditions are true, but then only handle the "other" situation.
I guess I sometimes feel that it is easier to know that something is valid, ...
20
votes
20answers
1k views
How do you handle huge if-conditions?
It's something that's bugged me in every language I've used, I have an if statement but the conditional part has so many checks that I have to split it over multiple lines, use a nested if statement ...
18
votes
16answers
2k views
Is “IF” expensive?
I can't, for the life of me, remember what exactly did our teacher said that day and I'm hoping you would probably know.
The module is "Data Structures and Algorithms" and he told us something along ...
18
votes
15answers
9k views
#ifdef vs #if - which is better/safer?
This may be a matter of style, but there's a bit of a divide in our dev team and I wondered if anyone else had any ideas on the matter...
Basically, we have some debug print statements which we turn ...
17
votes
11answers
1k views
To “if, if, if” or to “if, else if, else if, else” [closed]
I am writing some code for data analysis, and have to exclude samples based on some criteria. In practice I end up writing code such as:
bool Test(SampleType sample)
{
if( ! SubTest1(sample) )
...
14
votes
6answers
709 views
Shorter way to write this code
The following pattern appears very frequently in Haskell code. Is there a shorter way to write it?
if pred x
then Just x
else Nothing
14
votes
13answers
701 views
Confusing If Statement?
I always use If statement (In C#) as (1. Alternative);
if (IsSuccessed == true)
{
//
}
I know that there is no need to write "== true" as (2. Alternative));
if (IsSuccessed)
{
//
}
But, I ...
14
votes
9answers
4k views
IIf() vs. If
In Visual Basic, is there a performance difference when using the IIf function instead of the If statement?
13
votes
5answers
846 views
Java: if-return-if-return vs if-return-elseif-return
Asked an unrelated question where I had code like this:
public boolean equals(Object obj)
{
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() ...
13
votes
20answers
2k views
if/else, good design
Is it acceptable/good-style to simplify this function:
bool TryDo(Class1 obj, SomeEnum type)
{
if (obj.CanDo(type))
{
return Do(obj);
}
else
{
return false;
}
...
13
votes
10answers
2k views
Is if(var == true) faster than if(var != false)?
Pretty simple question. I know it would probably be a tiny optimization, but eventually you'll use enough if statements for it to matter.
EDIT: Thank you to those of you who have provided answers.
...
13
votes
18answers
665 views
If 'else' is about to happen anyway should it be declared or not? [closed]
Possible Duplicate:
Should ‘else’ be kept or dropped in cases where it’s not needed?
When
a = 0
This:
var foo = function() {
if (a != 0) return true
return false
}
...
13
votes
5answers
698 views
Usage of ‘if’ versus ‘unless’ for Perl conditionals
What are some guidelines for the best use of if versus unless in Perl code? Are there strong reasons to prefer one or the other in some situations?
12
votes
3answers
592 views
R - loop over rows of dataframe applying function with if-statement
I'm new to R and I'm trying to sum 2 columns of a given dataframe, if both the elements to be summed satisfy a given condition. To make things clear, what I want to do is:
> ...
12
votes
14answers
690 views
Multiple If-else or enum - which one is preferable and why?
Here is the original code:
public class FruitGrower {
public void growAFruit(String type) {
if ("wtrmln".equals(type)) {
//do watermelon growing stuff
} else if ...
12
votes
7answers
814 views
Looking for help to improve basic Java code. Too many if's!
Hey guys, I know this is a rather trivial question, but what is the best way handle this situation? I have several cases and I am just using simple if, if elses. I remember using a look up table at ...
12
votes
14answers
1k views
How efficient is an if statement compared to a test that doesn't use an if? (C++)
I need a program to get the smaller of two numbers, and I'm wondering if using a standard "if x is less than y"
int a, b, low;
if (a < b) low = a;
else low = b;
is more or less efficient than ...
12
votes
7answers
1k views
What's the scope of a Python variable declared in an if statement?
I'm new to Python, so this is probably a simple scoping question. The following code in a Python file (module) is confusing me slightly:
if __name__ == '__main__':
x = 1
print x
In other ...
12
votes
5answers
277 views
if-else structure
I have these long statements that I will refer to as x,y etc. here.
My conditional statements' structure goes like this:
if(x || y || z || q){
if(x)
do someth
else if (y)
do ...
12
votes
4answers
2k views
Delphi Performance: Case Versus If
I guess there might be some overlapping with previous SO questions, but I could not find a Delphi-specific question on this topic.
Suppose that you want to check if an unsigned 32-bit integer ...
12
votes
3answers
504 views
confusing use of a comma in if statement
I have this piece of code in c++
ihi = y[0]>y[1] ? (inhi=1,0) : (inhi=0,1);
But how would it look in C#?
Many thanks,
11
votes
6answers
2k views
C# if statement shorthand operators (? :) results in unreachable code
Why do I get this warning in C# with Visual Studio 2010?
"Unreachable expression code detected"
from the following code (DateTime.Now underlined in green squiggly):
public DateTime StartDate
{
...
11
votes
18answers
2k views
How should I rewrite a very large compound if statement in C#?
In my C# code, I have an if statement that started innocently enough:
if((something == -1) && (somethingelse == -1) && (etc == -1)) {
// ...
}
It's growing. I think there must ...
10
votes
6answers
227 views
Best way to format multiple 'or' conditions in an if statement (Java)
A simple question but Google hasn't been helping much.
I have an if statement with many conditions (have to check for 10 or 15 constants to see if any of them are present.)
Instead of writing ...
10
votes
2answers
333 views
Allow simple if statement without else to have no braces in codestyle
I use checkstyle to check if my java code respects the guidelines of our project.
However, we have one guideline that I cannot figure out how to check with this tool. We want to allow simple if ...
10
votes
5answers
4k views
What “if” is faster - classic or shorthand? [closed]
There are two types of "if" statement in java - classic (if {} else {}) and shorthand (exp ? value1 : value2). Is one faster than another or are they the same?
Classic:
int x;
if (epression) {
x ...
10
votes
5answers
602 views
if else in a list comprehension
I have a list l:
l = [22, 13, 45, 50, 98, 69, 43, 44, 1]
For numbers above 45 inclusive, I would like to add 1; and for numbers less than it, 5.
I tried
[x+1 for x in l if x >= 45 else x+5]
...
10
votes
5answers
569 views
if without condition?
I just found this "C++" today and i cannot make sense of it:
if(array[i][j]) {--i;--j;}
can anyone explains to me how this work? I just don't get it. What is the condition here? It seems like it ...
10
votes
6answers
687 views
How to avoid multiple nested IFs
I am currently trying to restructure my program to be more OO and to better implement known patterns etc.
I have quite many nested IF-statements and want to get rid of them. How can I go about this? ...
10
votes
7answers
327 views
Strange PHP syntax
I've been working on PHP for some time but today when I saw this it came as new to me:
if(preg_match('/foo.*bar/','foo is a bar')):
echo 'success ';
echo 'foo comes before bar';
...
10
votes
16answers
1k views
Is it bad practice to use an if-statement without brackets?
I've seen code like this:
if(statement)
do this;
else
do this;
I don't like that, I think this is cleaner and more readable
if(statement){
do this;
}else{
do this;
}
Is this ...
10
votes
8answers
28k views
If statement with String comparison fails
I really don't know why the if statement below is not executing:
if (s == "/quit")
{
System.out.println("quitted");
}
Below is the whole class.
It is probably a really stupid logic problem but ...
10
votes
10answers
3k views
Pro/con: Initializing a variable in a conditional statement
In C++ you can initialize a variable in an if statement, like so:
if (CThing* pThing = GetThing())
{
}
Why would one consider this bad or good style? What are the benefits and disadvantages?
...
9
votes
10answers
469 views
Why Math.min() > Math.max()?
When I type in an array into the parameter of the javascript math minimum and maximum functions, it returns the correct value:
console.log( Math.min( 5 ) ); // 5
console.log( Math.max( 2 ) ); // 2
...
9
votes
1answer
87 views
php static in if statement
I have a construction like this in my config file:
<?php
if (true) {
$nonstatic = 1;
static $config = 1;
}
else {
$nonstatic = 2;
static $config = 2;
}
echo $nonstatic;
echo ...