Which is better:
a)
if (something) {
...
}
b)
if (something)
{
...
}
|
1
|
Which is better:
|
||||||||||||
|
locked by Marc Gravell♦ Dec 1 at 6:04 |
closed as subjective and argumentative by Keith Oct 8 '08 at 7:02 |
|
|
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:
What will actually happen is that your function will return void, as if you had typed:
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:
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.
|
||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
b) for sure |
||
|
|
|
|
I insist on my students using b) because:
|
||
|
|
|
|
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... |
||
|
|
|
|
There is no "more better" answer. It's a matter of taste. Some like a some b.
|
||
|
|
|
|
I usually use if (expression) {
} 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)." |
||
|
|
|
|
It's a matter of personal preference. I use A because you don't have to use another line for the opening brace. |
||
|
|
|
|
I use this when I have more than one level:
This way If you have somethign like this, you dont get lost.
|
||
|
|
|
|
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. |
||
|
|
|
|
Doesn't matter, as long as you are consistent. If you are working on existing code, match whatever the original author did. |
||
|
|
|
|
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. |
||
|
|
|
|
I prefer a). It just looks better to me |
||
|
|
|
|
ARGH ... read the FAQ. "Avoid asking questions that are subjective, argumentative, or require extended discussion" |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
StyleCop says b. |
||
|
|
|
|
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++. |
||
|
|
|
|
This is subjective and has no correct answer. |
||||||||
|
|
|
option a will net about a 15% performance increase. . . . duh |
||||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
I prefer b) but I guess that's just me. |
||
|
|