vote up 3 vote down star
2

I have seen different ways of writing an if statement.

Which one do you prefer and why?

Example 1:

if (val % 2 == 1){output = “Number is odd”;}else{output = “Number is even”;}

Example 2:

if (val % 2 == 1)
{
    output = “Number is odd”;
}
else
{
   output = “Number is even”;
}

Example 3:

if (val % 2 == 1)
output = “Number is odd”;
else
output = “Number is even”;

Example 4:

if (val % 2 == 1){
output = “Number is odd”;
} else {
output = “Number is even”;
}

Similar question:

Why is it considered a bad practice to omit curly braces?

flag

20 Answers

vote up 21 vote down check

For cases like this, there's also the conditional operator:

output = (val % 2 == 1) ? "Number is odd" : "Number is even";

If you're definitely going to use an "if" I'd use version 2 or version 4, depending on the rest of your bracing style. (At work I use 4; for personal projects I use 2.) The main thing is that there are braces even around single statements.

BTW, for testing parity it's slightly quicker to use:

if ((val & 1) == 1)
link|flag
To add, the "standard" and most encountered with c# is 2, however many Java or previously Java shops will have inherited 4. Unless you have reason not to, 2 would be best to make it readable to you and to other C# developers. It will also help you when reading reference material, which is mostly 2. – David Mar 12 at 17:48
+1 for the ternary operator, -1 for the unnecessary braces. – Kevin Mar 12 at 17:55
I love the conditional operator. +1 – nickohrn Mar 12 at 19:13
Sometimes it's better to write one or two lines more code. Sure, there are a lot of nice possibilities to nest code, but all at the expense of readability. – Alexander Mar 12 at 19:15
@Alexander: There are certainly times when a conditional operator makes the code less readable, but I don't personally think this is one of those times. – Jon Skeet Mar 12 at 19:34
show 8 more comments
vote up 0 vote down

Single short statements:

if (condition) output = firstChoice;
else doSomethingElse();

Multiple or long statements

if (condition) {
   output = firstChoice;
   ...
} else {
   ...
}
link|flag
vote up 1 vote down

It is more important to be consistent than to select the best.

These styles have different advantages and drawbacks, but none is as bad as mixing them within a project or even a compilation unit or within a function.


Ternary operator is the obvious choice for this specific code. For simple single statement if/else's that can't be otherwise expressed, I'd prefer a properly indented case 3:

if (val % 2 == 1)
    output = “Number is odd”;
else
    output = “Number is even”;

I understand the motivation behind "always use braces", but I've personally never been bitten by their omission (OK, once. With a macro.)

From the above styles, I'd pick (2). (4) would be ok if "properly" indented.
(1) I'd attribute to a young developer who hopefully will grow out of "compact code", or someone who can't afford a decent monitor. Still, I'd go with it if it was the local style.

link|flag
vote up 0 vote down

Version #2 for me - easiest to see, easiest to read, easy to see where the if starts and ends, same for else, you dont have to worry about putting in brackets if you want to add more than one statement.

link|flag
vote up -2 vote down

Thanks everyone for sharing...

I believe I'll use #2 because it's easy and more readable when i'm on personal projects

But may be; with a team I will go for #4, which it can reduce few lines, saves me from scrolling the page down.

I think all if - else statement blocks should use curly braces, even when only a single statement is being controlled.

link|flag
get a bigger monitor :) – peterchen Mar 12 at 21:37
vote up 1 vote down

It's strange that nobody mentioned this:

if ( x == 1) {
   ...
}
else {
   ...
}

To me, this is the only correct way, of course :-)

link|flag
vote up 0 vote down

Personally, there are two methods that I find being good-practice:

For if-blocks, there's only this way:

if(...)
{
    // ...
}
else if (...)
{
    // ...
}
else
{
    // ...
}

This is the safest and most comprehensible way to write if-else-blocks.

For one liners (true one liners that are comprehensible on one line), you can use the ternary operator.

var objectInstance = condition ? foo : bar;

// Or the binary operator when dealing with null values
var objectInstance = condition ?? foo;

You shouldn't call methods that do something that do not help the current assignation.

I wouldn't use any other way than those stated above.

link|flag
vote up 4 vote down

None of the above.

If my execution block only has one line (even if it's a huge for statement) then I don't use braces, but I do indent it, similar to #3

if (num > 3)
     print "num is greater than 3";
else
     print "num is not greater than 3";

An example with multiple statements that do not need curly braces:

if (num > 3)
    for (int i = 0; i < 100)
        print i + "\n";
else
    print "booya!";

That said, Jon Skeet's response in this question is the best

link|flag
This is too prone to errors, someone else might start working on the project and add one line thinking it's in the conditional block and break the application. – Crossbrowser Mar 12 at 19:20
@crossbrowser, I have never seen that happen. – Kevin Mar 12 at 19:40
@Crossbrowser: Well yeah, if they're an idiot. Do you let idiots that don't know the language maintain your code? – belgariontheking Mar 12 at 19:43
Agreed with the people above.. I find the brackets ugly and unnecessary when I only have one statement.. Also, I have never seen it happen that people do not understand it... I do tend to see the grammar police arguing about it a lot... – Arcturus Mar 12 at 20:53
If another developer tasked with maintaining your code screws it up, I don't see how you could possibly sit there and blame the original author for doing something which is perfectly legal and not WTFy – TheTXI Mar 13 at 12:33
vote up 0 vote down

I use a #2 with a minor change

if (condition1) 
{
      doStuff();
} else 
{
      doSomethingElse();
}
link|flag
vote up 0 vote down

Personally I prefer version 2. But since it's only formating it doesn't matter. Use which is best readable for you and your team members!

link|flag
vote up 0 vote down

I'd always use #2. #4 is a truly awful layout and would only be done by someone who believes that a method must be one screen size in length and will do anything to cram it in, rather than refactor the code!!!

link|flag
vote up 0 vote down

I would use them in the following order: 1) the Ternary operator 2) example 3, but indented properly 3) either 2 or 4, they are basically the same. I would go with whatever the general styl was where I worked.

I agree with what jake said about omitting the unnecessary curly braces. I have never caused or seen a bug caused by new code being added and someone thinking they were part of an if statement but they weren't because of the lack of curly braces. If someone ever did do that, I would ridicule them mercilessly.

You'd have to torture me to get me to use number 1.

link|flag
vote up 0 vote down

Example 2 is without a doubt the least error prone approach. Please see this answer I gave to a similar question for the reason why:

What is the prefered style for single decision and action statements?

Although the Visual Studio default for brace usage is to put braces on a newline (my preferred method), the Framework Design Guidelines book (first edition) by Krzysztof Cwalina and Brad Abrams propose a different convention, example 4, placing the opening brace at the end of a preceding if statement (Page 274). They also state "Avoid omitting braces, even if the language allows it".

Not having the second edition at hand, I couldn't say if these conventions have changed or not.

HTH
Kev

link|flag
Even though this is CW, why the downvotes? – Kev Mar 12 at 18:58
vote up 0 vote down

I prefer 4 myself, but I think 2 is definitely good too.

link|flag
vote up 5 vote down

I personally prefer 3. The extra curly braces just add too much unnecessary visual noise and whitespace.

I can somewhat see the reasoning for 2/4 to reduce bugs, but I have personally never had a bug because thinking extra lines were inside an if statement. I do use C# and visual studio so my code always stays pretty well formatted. This could however be a problem if I was a more notepad style programmer.

link|flag
Exactly my thought as well. :) – David Mar 12 at 18:24
Just wait for that time when you're still in the office at 1130pm on beer and curry night scratching your head.... :D – Kev Mar 12 at 19:07
+1 for 3. If you're so tired that you can't tell the difference between an if without braces and one with braces, you are too tired to code and you're just going to be writing crap. – Eclipse Mar 12 at 19:27
Do you still like #3; even if writing cascading if else statement? – egyamado Mar 12 at 19:46
I only like 3 when the thing inside the if is one line of code. I personally don't like the cascading branches – Jacob Adams Mar 12 at 20:52
vote up 3 vote down

I agree with the ternary operator. Very under utilized in code that I come across, and I think it is much easier and nicer to read than all the extra brackets and indents it takes to write out an if/else statement.

link|flag
vote up 8 vote down

I use version 2.

One reason to use curly braces becomes more clear if you don't have an else.

if(SomeCondition)
{
  DoSomething();
}

If you then need to add another line of code, you are less likely to have an issue:

if(SomeCondition)
{ 
  DoSomething();
  DoSomethingElse();
}

Without the braces you might have done this:

if(SomeCondition)
   DoSomething();
   DoSomethingElse();
link|flag
People keep using this as the reasoning for always using braces, but has this ever happened to you where you got confused? – Eclipse Mar 12 at 19:23
Yes, it caused a bug for me once. I don't remember whether I was the developer responsible for putting "DoSomethingElse" call at the wrong indentation or not, but I certainly found and fixed it. It takes longer than you might expect, when the code really "looks" right. – Jon Skeet Mar 12 at 19:35
vote up 13 vote down

Version 2. I always include the brackets because if you ever need to put more than one line under the conditional you won't have to worry about putting the brackets in at a later date. That, and it makes sure that ALL of your if statements have the same structure which helps when you're scanning code for a certain if statement.

link|flag
AND the non-bracket from can hide bugs – annakata Mar 12 at 17:22
vote up 5 vote down

I prefer #2. Easy readability.

link|flag
Indent the else? Why? I don't think so. – Josef Sábl Mar 12 at 20:35
Yes, that was before the 'starter' edited the code and fixed it ;-) – Zaagmans Mar 12 at 21:29
vote up 3 vote down

I use version 2.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.