vote up -9 vote down star
1

Which is better:

a)
if (something) {
   ...
}

b)
if (something)
{
   ...
}

this is a very subjective discussion-y question, not really appropriate for stack overflow! – kronoz Sep 15 '08 at 19:39
This appears to be the most voted-down article on SO as of 9/17/2008. Quite a distinction! – jfm3 Sep 17 '08 at 20:31
I think a badge would be appropriate! – Jay Bazuzi Dec 30 '08 at 17:04
2  
For 20 years I thought this was merely subjective, and that the correct answer was to be consistent. Then my team did some research and found that one is actually better than the other. But I can't tell you which, because this question is closed! – Jay Bazuzi Dec 30 '08 at 17:06
Badges are for encouraged behavior. A tiny electric shock is more appropriate. – willc2 Jan 21 '09 at 11:16
show 3 more comments

locked by Marc Gravell Dec 1 at 6:04

closed as subjective and argumentative by Keith Oct 8 '08 at 7:02

25 Answers

vote up 23 vote down check

In most C-based languages this is simply a matter of personal taste and of sticking with whatever style the rest of your team uses. However, in JavaScript, the correct answer is to put the bracket on the same line (your example 'a'). The reason is that JavaScript has a nasty little "feature" whereby it will sometimes assume that you meant to end the line with a semi-colon and simply forgot. For example, if you were hoping to return an object like so:

return
{
    status: true
};

What will actually happen is that your function will return void, as if you had typed:

return;
{
    status: true
};

You can avoid the problem by adopting the style in which the { is always placed at the end of the previous line. In the example above, you will get the correct behavior with this code:

return {
    status: true
};


Added on October 16, 2009: Try running this code in, for example, Firefox 3.5 or Internet Explorer 7. The two functions are identical except for placement of the brackets, but the returned values are not the same.

var objectResult = function() {
    // Return object.
    return {
        myProp: 1.0
    };
};

var badResult = function(baseVal)
{
    // Return object.
    return
    {
        myProp: 1.0
    };
};

alert('typeof objectResult(): ' + typeof objectResult());
alert('typeof badResult(): ' + typeof badResult());
link|flag
When you say "JavaScript" and "sometimes", can you give any detail as to which implementation and when? I've written a lot of javascript code, I always use option b) as I prefer the readability, and I've NEVER come across the problem you mention here. – Matt Sach Oct 16 at 15:08
Thanks for the additional example, dgvid. I can see you're absolutely right. It feels like a different scenario, though: returning an object literal, as opposed to function or statement block delimiting. It seems obvious now, as you wouldn't have return 'foo'; with the string on a new line, so of course you shouldn't have the object literal starting on a new line :) – Matt Sach Oct 30 at 12:40
vote up 4 vote down

I prefer b) but I guess that's just me.

link|flag
vote up 2 vote down

I always use the second, but theres nothing wrong with the first.

It's really a matter of choice, althouhg if your working with a team you should all agree to do it one way or another.

link|flag
vote up 0 vote down

This marks the beginning of a NEW COMMUNITY POST (cue dramatic music).

I think it's personal preference, really. I find:

if(true){
  //Do stuff
}

better and use it more often. But, people who use Visual Studio for a long time will tell you otherwise.

link|flag
vote up 1 vote down

option a will net about a 15% performance increase. . . . duh

link|flag
Is that true? For what language(s)? – Andrew Hedges Sep 24 '08 at 22:07
Yep, for most all C based languages. Has to do with the way the compilers recursively search code branches. They will search for the { in spot a first then go to b. – Bob Dizzle Oct 2 '08 at 12:52
Which in your case would mean if (something){ not if (something) {. Once the compiler hits whitespace it enters a pretty tight loop, even if it uses a state table. In fact if it uses a state table it doesn't give a hoot about what comes next, it's all one lookup (which is what csc uses). – Jonathan C Dickinson Oct 8 '08 at 13:04
There is no difference in performance between (a) and (b), except perhaps that the lexical analyzer needs to skip over a few extra whitespace characters in (b). That's pretty much instantaneous. Unless of course you're entering these on 80 column punch cards ... ;-) – Jim Ferrans Jun 2 at 3:52
vote up 14 vote down

This is subjective and has no correct answer.

link|flag
Voted up for truth. Voting down this question though. – cazlab Sep 15 '08 at 19:42
disagree -- dgvid's accepted answer is quite good. Classic example of bad question with a surprisingly great answer. It does happen. – Jeff Atwood Sep 17 '08 at 13:13
Pwned by not knowing JavaScript - something about this being the Linga Franca of the web. :) – Jarrett Meyer Oct 21 '08 at 21:22
@Jeff, and that alone should be worth a forceful edit of the question and re-open it. – jpinto3912 Jun 3 at 15:32
vote up 1 vote down

Depends on the language normal style. C# uses next line by MS's style--as default in VS. Java uses same line. God help you if you're using C++.

link|flag
vote up 2 vote down

StyleCop says b.

link|flag
vote up 3 vote down

I use whatever the style guidelines for my employer dictate.

Personally, I prefer b, but I do whatever it takes to make my code readable by the people I work with.

link|flag
vote up 3 vote down

B - find that it makes the code look nice and block chunky and a little easier to follow backward if needed from the closing brace to the start brace.

link|flag
vote up 0 vote down

Most importantly, follow the coding standard of your team.

The Sun Java coding guidelines say the same line, although I quite like the symmetry of having it on the next line.

link|flag
vote up -2 vote down

ARGH ... read the FAQ.

"Avoid asking questions that are subjective, argumentative, or require extended discussion"

link|flag
vote up 0 vote down

I prefer a). It just looks better to me

link|flag
vote up 3 vote down

It does not matter too much which style you use. I prefer style b.

What is important to make sure your whole team uses a consistent style.

link|flag
vote up 0 vote down

Doesn't matter, as long as you are consistent. If you are working on existing code, match whatever the original author did.

link|flag
vote up 3 vote down

Neither are better (this is simply a religious war)

If it's your code, use what you like most. If you work for a company, follow their standard.

If you're trying to establish a coding-standard, there are more important things to address than bracing position. Lots of IDEs can reformat someone else's code to your preferred look.

link|flag
vote up 0 vote down

I use this when I have more than one level:

if(condition1){
    //Do stuff
    if (condition2) {
        //Do stuff
    } // condition2
 }// condition1

This way If you have somethign like this, you dont get lost.

if(condition1){
    //Do stuff
    . 
    .
    .
    .
    if (condition2) {
        //Do stuff
        .
        .
        .
        .
        if (condition3) {
             //Do stuff
             .
             .
             .
             .
        } //Condition3

    } // condition2
 }// condition1
link|flag
vote up 0 vote down

It's a matter of personal preference. I use A because you don't have to use another line for the opening brace.

link|flag
vote up 1 vote down

I usually use

if (expression) {

code;

}

Because I think that each line should do something rather than just be a container for some other lines. The ending brace actually does something (closes the if statement), but the if statement was already started by "if (expression)."

link|flag
vote up 0 vote down

There is no "more better" answer. It's a matter of taste. Some like a some b.
Personally I find b easier to process since I am used to looking for
the Open Brace to match the Close easily identified at the end.
Any programmer should accept either format and roll with it

link|flag
vote up 2 vote down

Whatever you do, choose a style and KEEP it.

Otherwise, if you do source control management, any change in the format of java source code can seriously mess up your merges...

Of course, you could deploy a tool that format automatically your code at every checkin, with the braces adequately placed... but if any other developer change the setting of that tool, your are back to face some difficult merge.

Other than that, it is just very subjective...

link|flag
vote up 7 vote down

I insist on my students using b) because:

  1. It is easy to scan up and down the code to find the matching braces especially when they start nesting
  2. By imposing a strict style I teach them to be careful and pay attention to details when writing code
link|flag
vote up 4 vote down

b) for sure

link|flag
vote up 1 vote down

If this is a pressing issue to you, then you're wasting your coding time. Where you place the brace does nothing for the correctness of your program.

link|flag
vote up 4 vote down

I went looking for the least popular question on SO, and this is what I found.

I personally think it's a valid question. Reading source code accurately and quickly is an important skill, and anything that leads to readability in practice is a good thing.

I think it'd be a good area of research to do studies on code readability, and this question would be one of the ones I would ask.

There are potentially different answers that you'd get, depending on the experience of the developer doing the reading. For instance, novice coders might find it easier to read things that look more like English, while expert coders might read things easier with lots of indentation and other visual cues to structure.

On the other hand, Beautifiers allow me to translate to my preferred style fairly easily, and allow you to do the same.

The one place where I think people collide most often is in the comments, where formatting is much more subjective and difficult to automate.

link|flag

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