vote up 40 vote down star
10

Why does everyone tell me writing code like this is a bad practice?

if (foo)
    Bar();

//or

for(int i = 0 i < count; i++)
    Bar(i);

My biggest argument for omitting the curly braces is that it can sometimes be twice as many lines with them. For example, here is some code to paint a glow effect for a label in C#.

using (Brush br = new SolidBrush(Color.FromArgb(15, GlowColor)))
{
    for (int x = 0; x <= GlowAmount; x++)
    {
        for (int y = 0; y <= GlowAmount; y++)
        {
            g.DrawString(Text, this.Font, br, new Point(IconOffset + x, y));
        }
     }
 }
 //versus
using (Brush br = new SolidBrush(Color.FromArgb(15, GlowColor)))
    for (int x = 0; x <= GlowAmount; x++)
        for (int y = 0; y <= GlowAmount; y++)
            g.DrawString(Text, this.Font, br, new Point(IconOffset + x, y));

You can also get the added benefit of chaining usings together without having to indent a million times.

using (Graphics g = Graphics.FromImage(bmp))
{
    using (Brush brush = new SolidBrush(backgroundColor))
    {
        using (Pen pen = new Pen(Color.FromArgb(penColor)))
        {
            //do lots of work
        }
    }
 }
//versus
using (Graphics g = Graphics.FromImage(bmp))
using (Brush brush = new SolidBrush(backgroundColor))
using (Pen pen = new Pen(Color.FromArgb(penColor)))
{
    //do lots of work
}


The most common argument for curly braces revolves around maintance programming, and the problems that would ensue by inserting code between the original if statement and its intended result:

if (foo)
    Bar();
    Biz();


Questions

:

  1. Is it wrong to want to use the more compact syntax which the language offers? The people that design these languages are smart, I can't imagine they would put a feature which is always bad to use.
  2. Should we or Shouldn't we write code so the lowest common denominator can understand and have no problems working with it?
  3. Is there another argument that I'm missing?
flag
show 9 more comments

52 Answers

prev 1 2
vote up 1 vote down

Err on the side of more secure - just one more bug you potentially won't have to fix.

I personally feel more secure if all of my blocks are wrapped in curlys. Even for one-liners, these are simple notations that easily prevent mistakes. It makes the code more readable in the sense that you clearly see what is in the block as not to confuse the body of the block with the following statements outside of the block.

If I have a one-liner, I typically format it as follows:

if( some_condition ) { do_some_operation; }

If the line is just too cumbersome then use the following:

if( some_condition )
{
    do_some_operation;
}
link|flag
vote up 9 vote down

One of the instances where this can bite you is back in the old days of C/C++ macros. I know this is a C# question, but often coding standards carry over without the reasons why the standard was created in the first place.

If you aren't very careful when you create your macros, you can end up causing problems with if statements that don't use the {}.

#define BADLY_MADE_MACRO(x) function1(x); function2(x);

if (myCondition) BADLY_MADE_MACRO(myValue)

Now, don't get me wrong, I'm not saying that you should always do {} just to avoid this problem in C/C++, but I have had to deal with some very strange bugs because of this.

link|flag
show 1 more comment
vote up 6 vote down

I think it's a matter of guidelines for the project you are working on and personal taste.

I usually omit them when they are not needed, except some cases like the following:

if (something)
    just one statement; // i find this ugly
else
{
    // many
    // lines
    // of code
}

i prefer

if (something)
{
    just one statement; // looks better:)
}
else
{
    // many
    // lines
    // of code
}
link|flag
vote up 0 vote down

AFAIR curly braces are always a scope, so for that it is good to use them everytime.

Without the braces:

if(DoSomething)
    MyClass myClass = new MyClass();

myClass.DoAnythingElse();

This will compile, but lead to null references easily. (C# compiler does not compile this, good thing!)

Whereas this way:

if(doSomething)
{
    MyClass myClass = new MyClass();
}

myClass.DoAnythingElse();

won't even compile.

It is far better than minize Exceptions at compiletime already, than finding them at runtime.

link|flag
show 2 more comments
vote up 0 vote down

I don't think that omitting braces is always a bad practice but whether is should be allowed and under what circumstances must be agreed in the team.

I find this very readable:-

if (foo)
    bar();

and this:-

if (foo)
    bar()
else
    snafu();

If an extra line is added to these:-

if (foo)
    bar();
    snafu();

This looks all wrong, there is a block of code, indented. but not braced.

A similar argument holds for a for loop. However when I start nesting:-

if (foo)
    if (bar)
        snafu()

Now I'm running into trouble, it looks like a block of statements. Personally I would only skip the use of braces for one level only any deeper an I'd make the outer code use braces:-

if (foo) {
   if (bar)
       snafu()
}

As I'm typing this I've seen the answers jump from 1 to 17, clearly this going to be an emotive question (I suggest you add subjective to the tag list (my ability to do this has gone missing whats up with that?)).

The most important thing is to have agreement in the team as to if and how its acceptable and stick with it.

link|flag
show 1 more comment
vote up 13 vote down

This is not always considered a bad practice. The Mono Project Coding Guidelines suggests not to use curly braces if it's not necessary. The same for the GNU Coding Standards. I think it's a matter of personal taste as always with coding standards.

link|flag
show 1 more comment
vote up 0 vote down

  • Write the opened bracket on the same line as previous statement:

    if ( any ) {
        DoSomething();
    }
    

  • If you think, this is too big, you can write it in one line:

    if ( any ) { DoSomething(); }
    

    If you think, in one line is not readable so good, you can write it in two lines:

    if ( any ) {
        DoSomething(); }
    if ( any )
        { DoSomething(); }
    
    • In future someone will need change one statement to more statements. Without brackets is the change more complicated. Yes only littlebit, but is better prevent bugs. And writing brackets is very easy a cheap way.
  • link|flag
    show 1 more comment
    vote up 6 vote down

    My philosophy is if it makes the code more readable, why not do it?

    Obviously you have to draw the line somewhere, like finding that happy medium between concise and overly descriptive variable names. But brackets really do avoid errors and improve the readability of the code.

    You can argue that people smart enough to be coders are going to be smart enough to avoid bugs that stem bracketless statements. But can you honestly say you've never been tripped up by something as simple as a spelling error? Minutia like this can be overwhelming when looking at large projects.

    link|flag
    show 2 more comments
    vote up 20 vote down

    I prefer the clarity that the curly brace offers. You know exactly what is meant and don't have to guess if someone just goofed and left them off (and introduced a bug). The only time I omit them is when I put the if and action on the same line. I don't do that very often either. I actually prefer the whitespace introduced by putting the curly brace on its own line, though from years of K&R C-like programming, ending the line with a brace is a practice I have to work to overcome if the IDE doesn't enforce it for me.

    if (condition) action();  // ok by me
    
    if (condition) // normal/standard for me
    {
       action();
    }
    
    link|flag
    vote up 32 vote down

    If it's something small, write it like this:

    if(foo()) bar();

    If it's long enough to break into two lines, use braces.

    link|flag
    show 5 more comments
    vote up 6 vote down

    I used to be a huge supporter of "curly braces are a MUST!", but since adopting unit testing, I find that my unit tests protect braceless statements from the scenarios like:

    if (foo)
        snafu();
        bar();
    

    With good unit tests, I can confidently omit curly braces for simple statements to improve readability (yes, that can be subjective).

    Alternatively, for something like the above, I would likely inline that to look like:

    if (foo) snafu();
    

    That way, the developer who needs to add bar() to the condition, would be more apt to recognize the lack of curly braces, and add them.

    link|flag
    show 3 more comments
    vote up 5 vote down

    Your main arguments against using braces are that they use additional lines and that they require additional indenting.

    Lines are (almost) free, minimizing the number of lines in your code shouldn't be an objective.

    And indentation is independent of brace usage. In your cascading 'using' example I still think you should be indenting them even when you omit the braces.

    link|flag
    vote up 3 vote down

    I always omit them when appropriate, such as in your first example. Clean, concise code I can see and understand by glancing at is easier to maintain, debug and understand than code I have to scroll through and read line by line. I think most programmers will agree with this.

    It is easy for it to get out of hand if you start doing multiple nesting, if/else clauses and so on, but I think most programmers should be able to tell where to draw the line.

    I see it kind of like the argument for if ( foo == 0 ) vs if ( 0 == foo ). The latter may prevent bugs for new programmers (and maybe even occasionally for veterans), while the former is easier to quickly read and understand when you're maintaining code.

    link|flag
    vote up 2 vote down

    in order to keep the code with braces from taking up lots of space, I use the technique recommended in the book Code Complete:

    if (...) {
        foo();
        bar();
    }
    else {
        ...
    }
    
    link|flag
    show 4 more comments
    vote up 0 vote down

    It is a tradeof, shorter code (better readable) versus more secure code (less error prone).

    My 2 cents:

    1. There is a reason for this rule. It has been developed by countless programmers through long working hours, stretching into the night or next morning, trying to fix a bug that was caused by a little oversight.
    2. You have t decide for yourself if the tradeof is worth it.
    3. In my experience it is, I am one of those countless programmers who was working into the night to find the cause for a nasty bug. The cause was me being lazy.
    link|flag
    show 2 more comments
    vote up 3 vote down

    I agree that "if you are smart enough to get someone to pay you to write code, you should be smart enough to not rely solely on indentation to see the flow of the code."

    However... mistakes can be made, and this one is a pain to debug... especially if you're coming in looking at someone else's code.

    link|flag
    vote up 6 vote down

    One of the main issues is when you have regions of one-liners and non-one liners, along with separation from the control statment (for, if, what have you) and the end of the statment.

    For example:

    for (...)
    {
      for (...)
        for (...) 
        {
          // a couple pages of code
        }
      // which for block is ending here?  A good text editor will tell you, 
      // but it's not obvious when you're reading the code
    }
    
    link|flag
    show 4 more comments
    vote up 4 vote down

    Most times it is ingrained as a coding standard, whether for a company or an FOSS project.

    Ultimately someone else will need to grok your code and it is a major time drain for each developer to have to figure out the specific style of the section of code they are working on.

    Also, imagine that someone is going between Python and a Cish language more than once a day... In Python indenting is part of the block symantics of the language and it would be quite easy to make a mistake like the one you quote.

    link|flag
    show 1 more comment
    vote up 6 vote down

    I occasionally use the very bottom code (multiple using statements), but other than that I always put the braces in. I just find it makes the code clearer. It's blatantly obvious from more than just indentation that a statement is part of a block (and thus probably part of an if etc).

    I have seen the

    if (...)
        foo();
        bar();
    

    bug bite me (or rather "me and colleagues" - I didn't actually introduce the bug) once. This was despite the fact that our coding standards at the time recommended using braces everywhere. It took me a surprisingly long time to spot - because you see what you want to see. (This was about 10 years ago. Maybe I'd find it faster now.)

    Of course if you use "brace at the end of the line" it reduces the extra lines incurred, but I personally dislike that style anyway. (I use it at work, and have found it less unpleasant than I expected, but it's still a bit unpleasant.)

    link|flag
    show 4 more comments
    vote up 7 vote down

    There are always exceptions, but I would argue against omitting braces only when it's in one of the forms:

    if(x == y)
       for(/* loop */)
       {
          //200 lines
       }
    
    //rampion's example:
    for(/* loop */)
    {
       for(/* loop */)
          for(/* loop */)
          {
             //several lines
          }
    }
    

    Otherwise, I have no problem with it.

    link|flag
    show 3 more comments
    vote up 0 vote down

    Your maintanence programmer may forget to add curly braces later if he/she adds logic to the app. So the following happens:

    if(foo)
    bar();
    bar(delete);
    

    Instead of

    if(foo) {
    bar();
    }
     bar(delete);
    
    link|flag
    show 4 more comments
    vote up 1 vote down

    Let's say you have some code:

    if (foo)
        bar();
    

    and then someone else comes along and adds:

    if (foo)
        snafu();
        bar();
    

    According to the way it's written, bar(); is now executed unconditionally. By including the curly braces, you prevent this kind of accidental error. Code should be written in such a way as to make such mistakes difficult or impossible to make. If I was doing a code review and saw the missing braces, especially spread across multiple lines, I would create a defect. In cases where it is justified, keep it on one line so that the chance of making such an error is again kept to a minimum.

    link|flag
    show 6 more comments
    prev 1 2

    Your Answer

    Get an OpenID
    or

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