vote up -2 vote down star
2

I prefer Pascal-like coding style, where the beginning and ending of a code block are on the same column. I think that it is easier to read and to handle cut&paste than the other kind of coding style.

The style I prefer (Pascal-like):

void fooBar(String s)
{
  int a;
  int length=s.length();
  for (int i=0;i<length;i++)
    {
    if (i>10)
      {
      System.out.println(i);
      System.out.println(s.charAt(i));
      }
    }
 }

The style that was adopted by the Java community:

void fooBar(String s) {
  int a;
  int length=s.length();
  for (int i=0;i<length;i++){
    if (i>10){
      System.out.println(i);
      System.out.println(s.charAt(i));
    }
  }
}

So why do you use one type or the other (please cite an objective reason)?

flag
6  
I'm fairly certain that the brackets conversation is NOT what stackoverflow is for. – Geoff Oct 1 '08 at 19:46
Upvotting Geoff's comment. – Sergio Acosta Oct 1 '08 at 19:51
The reason why is personal choice - this is a discussion, not a question. – Ross Oct 1 '08 at 19:55
4  
Well it is about programming. And for some people it is very important. – Gamecat Oct 1 '08 at 19:56
1  
Sorry, I do think I'm missing something and that is exactly why I asked for the reasons. I use both types, but when I have a choice I prefer the first. I just want to know the reason behind the styles. I don't think it is a useless question. – Luis Soeiro Oct 1 '08 at 20:48
show 3 more comments

25 Answers

vote up 1 vote down

I use Java style (even though I hardly ever write Java) because the extra, functionally empty newlines in Pascal style and K&R style scan, to me, as visual noise that I reflexively desire to eliminate so I can see the code properly.

link|flag
vote up 0 vote down

I think the "official taught in school" approach is to keep the opening braces in the same line as they function name / if / etc.

I personally much prefer the style where they're on a newline and start immediately below the beginning of the last line because then I can visually see where a condition starts and end by scanning vertically with my eyes. (Assuming ,of course, that I ran an auto-identation first).

link|flag
vote up 3 vote down

I prefer the Java bracket-on-the-same-line style, largely for the usual reasons :

1) I'm used to it

2) I rely on indentation to see the block structure (and yes, I'm a Pythonista)

But mainly ...

3) It saves vertical screenspace. This sounds petty, but one thing no-one's mentioned yet is that it becomes less petty, the more fine-grained you write your methods or functions.

If your methods average about 20 lines, then that extra line doesn't mean much. You're still likely to see only one or two methods at a time on the screen. But as you evolve towards a more "functional" style where many method bodies are only 1 or 2 lines long, that extra line per method can cost you a third of your screen real-estate. It can be the difference between seeing 15 and only 10 of your significant "units of behaviour" at a time.

link|flag
vote up 0 vote down

Pick a style and stick with. If part of a team, use the style of the team. Consistency is far more important then deciding which style is the "best" style.

link|flag
vote up 0 vote down

All comes down to what you are used to. I see people examples here and whenever I see the brace on its own line my brain says "thats not right". But the majority of code that I read when starting out was the K & R style so it just looks right to me.

No point in arguing about this really.

link|flag
vote up 1 vote down

I find it creates a stronger visual association between the block and the statement or function signature which introduces it. Especially once else and elsif come into the picture: "else" on its own on a line looks to me disconnected, so for preference I do write "} else {".

It also forces:

if (condition) {
    // witter on in comments for half a page
    // witter on in comments for half a page
    // witter on in comments for half a page
    // witter on in comments for half a page
    // witter on in comments for half a page
    // do some work...
}

Rather than

if (condition) 
// witter on in comments for half a page
// witter on in comments for half a page
// witter on in comments for half a page
// witter on in comments for half a page
// witter on in comments for half a page
{
    // hang on, is this code conditional or not?
}

But of course you can use the brace-on-newline style and nothing stops you banning comments in that position.

I've also heard it claimed that the following typo:

if (condition);
{
    // do something
}

is more likely than this one:

if (condition); {
    // do something
}

and although it supports my preference, I'm not sure I buy it, since neither is exactly rife in my experience and the compiler probably warns anyway.

In practice I've learned that it's not worth arguing about: once I had been forced to use a non-preferred style, I learned that actually it's not the end of the world after all.

Still, don't get me started on "if(condition)" ;-)

link|flag
vote up 0 vote down

K&R had significant influence on how people programmed in C early on. Their style recommended the opening curly brace on the same line for all blocks but function declarations. Because of this, many people learned C using this style. My guess is, that's the primary reason people initially choose that method.

There are other reasons to adopt the style as well. I personally think keeping the opening curly on the same line makes for more readable code because the code is more "dense" -- I can see more code in the same number of lines.

Of course, others will argue that having the code spread apart makes it more readable, and for them that is a true statement. And as you pointed out, some will argue that a curly brace on a line by itself makes it easier to cut and paste blocks.

It really boils down to individual preference. We're all different and have different interpretations of what is the best way to do certain things.

A useful treatise on the subject is here: Wikipedia: Indent Style

link|flag
Of course, personal preferences aside, we all know that the opening curly brace truly belongs on the same line, and you should enter said curly braces using emacs. :-) – Bryan Oakley Oct 1 '08 at 20:03
vote up 3 vote down

Hmm...

for (var x in TheList) {
   Console.WriteLine(x.ToString());
}

Or

for (var x in TheList)
{
   Console.WriteLine(x.ToString());
}

I don't know about you, but there is no confusion to me about where the start of the loop begins. The opening brace really isn't that significant. The indentation tells all.

link|flag
vote up 2 vote down

Linus explains it really well in the Linux kernel coding style guide.

note that this brace-placement also minimizes the number of empty (or almost empty) lines, without any loss of readability. Thus, as the supply of new-lines on your screen is not a renewable resource (think 25-line terminal screens here), you have more empty lines to put comments on.

and

However, there is one special case, namely functions: they have the opening brace at the beginning of the next line, thus:... Heretic people all over the world have claimed that this inconsistency is ... well ... inconsistent, but all right-thinking people know that (a) K&R are right and (b) K&R are right. Besides, functions are special anyway (you can't nest them in C).

link|flag
vote up -2 vote down

I agree with you.

The "open Curly on same line" crowd's argument basically boils down to "That's the way it was done in K&R's 'C Programming Language', and therefore must be the best way". This, of course, is nonsense. K&R came out in the early 80's, when code readability wasn't that big an issue, code editors were primitive, and languages that didn't require fixed column formatting were a cool new idea.

Their argument these days is that it "saves a line" as if you're being chraged by the CRLF. And, it's also nonsense. You can save the same line writing

   if (x==y) {
       blah;
       blah;
       blah;
   }

as well as :

 if (x==y)     
 {   blah;
     blah;
     blah;    
 }
link|flag
Um. "The elements of programming style" (or "Don't be too clever" :) by Brian Kernighan was published in 1978. It contained a great mixture of style guidance (focused on readability) and standard coding practices (think buffer overflows). I think that too many people didn't read it early enough. – ΤΖΩΤΖΙΟΥ Oct 1 '08 at 21:14
ugh, that second example is right up there with sticking the comments between the condition and the block in ugliness – RCIX Sep 16 at 22:37
vote up -1 vote down

The keyword/function definition/etc is a better indicator of the start of a code block than just a brace.

function something() {
  // code here
}

Why do you need to see a brace below the keyword function to know that a code block starts there. It's just redundant information, you already know a code block starts there. Same with if/switch/while and just about any other possible reason for starting a code block.

How about this:

def some_ruby_method
start
  code_goes_here
end

Silly? Of course.

link|flag
vote up 1 vote down

I use { on the same line for compactness and because the code indent already tells me what I need to know about the code structure.

I am a big fan of Python.

link|flag
vote up 2 vote down

If you use the 'code' button on the toolbar you'll be able to show the new-lines where you want them :)

I imagine this is what you're trying to represent?

Pascal-style

void fooBar(String s) 
{ 
    int a;
    int length=s.length();
    for (int i=0; i<length; i++) 
    { 
        System.out.println(i);
        System.out.println(s.charAt(i)); 
    }
}

Java-style

void fooBar(String s) { 
    int a;
    int length=s.length();
    for (int i=0; i<length; i++) {
        System.out.println(i);
        System.out.println(s.charAt(i)); 
    }
}

Personally I prefer what you call Pascal-style. Partly it's just what I was taught when I started programming, but also I feel that it makes the code a little more readable -- for example the contents of loops stand out a little more clearly.

link|flag
I do prefer to put the code block on the same column where the curly brackets begin and end. Not in this version of Pascal-Style. – Luis Soeiro Oct 1 '08 at 20:41
vote up 0 vote down

I personally prefer to put the opening brace on a new line. There is some merit in putting it on the same line - it saves you a line of code (no one tends to write code on the same line as the opening brace). This is good for presentations where space on the screen is very precious and should not be wasted in braces.

link|flag
vote up 2 vote down

I recently switched to using opening brace on same line (C++/Java) styles after years of having braces on separate lines. the reason from my switch was simply that I can pack more lines of code into a screen that way and I think currently I am at a point where I would like to get the max information possible packed into as few lines of code as possible.

I think this has kind of grown on me because when I had started out programming having the { on a separate line seemed like a much more neat and tidy approach.

link|flag
vote up 1 vote down

I do a combination. For methods or code blocks (places where I have curly braces with no control statement before them) I give the brace its own line. For control blocks it goes on the line with the control statement. I find it easier to read, although I have been told that having } else { on one line is horrible :)

link|flag
vote up 2 vote down

The common argument I hear for curly bracket on the same line is that it makes the code more compact. The argument I hear for giving brackets their own line is to make it easier to visually see where blocks start and end.

Languages like Java and C# have developed standard coding styles, and it's generally best to just use the coding style that's generally accepted for the language.

link|flag
vote up 1 vote down

When using C-style syntax like this I prefer to open curly braces on a new line so that they line up with the closing brace. This is primarily down to a sense of symmetry which would otherwise bug me. also I find it easier to read/understand code when indented in this fashion.

I believe others place the curly opening brace on the same line as the if etc, because it results in fewer lines of code being written and therefore more lines of code fitting on screen at once. Since this is not my own preference, this is only a guess.

link|flag
vote up 6 vote down

Vertical space conservation.

Also, they might have been exposed to Python. Literal translation:

def fooBar(s):
  length = len(s)
  for i in range(length):
    if i > 10:
      print i
      print s[i]

It's hard to give opening braces that much importance after you've seen how unimportant they really are.

link|flag
5  
i'll keep my braces, you keep your spaces ;-) – Steven A. Lowe Oct 1 '08 at 20:00
1  
Yeah: I like Python in general, but if I wanted whitespace to have syntactic meaning then I'd use, well, compsoc.dur.ac.uk/whitespace – Steve Jessop Oct 1 '08 at 20:13
vote up 0 vote down

I strongly prefer Pascal-like coding style, where the beginning and ending of a code block are on the same column.

Because other people strongly prefer other things. That is how preferences work. It is purely subjective. I happen to agree and rarely if ever open braces on the same line.

link|flag
vote up 1 vote down

The curly braces war strikes again.

I use both, it depends on the rest of the code. But i prefer:

if (foo == bar) {
  bar = doMagic(foo);
} else {
  bar = doMoreMagic(foo);
}
link|flag
vote up 1 vote down

I also prefer the Pascal-Coding-Style. Mainly due to the fact that I started with Turbo-Pascal.

I now use it for C/C++ and the other Style for Java (since Eclipse does it that way)

link|flag
I've learned to work with either, and use either a) the same as the rest of the code, or b) whatever the IDE or automated formatting tools are configured to use – Dennis S. Oct 1 '08 at 19:48
vote up 6 vote down

Largely personal preference (or, in a work environment, obeying the house style). Some people prefer the:

keyword {
    code
    code
    code
}

style because the indented code is more easily identified with the keyword line than when they are separated by a line with a curly bracket:

keyword
{
    code
    code
    code
}

The book "Code Complete" talks about this in some detail.

link|flag
vote up 4 vote down

Because it's the way God intended.

link|flag
not that we are condoning a religious war on S/O. ;-) – scunliffe Oct 1 '08 at 21:21
vote up 9 vote down

K & R Style

Kernighan and Ritchie designed C, so there's something to be said for this style.

The K&R style, so-called because it was used in Kernighan and Ritchie's book The C Programming Language, is commonly used in C. It is less common for Objective C, C++, C#, and others. It keeps the first opening brace on the same line as the control statement, indents the statements within the braces, and puts the closing brace on the same indentation level as the control statement (on a line of its own). Functions, however, are braced distinctly from statements; an opening function brace is placed on the line following the declaration, at the same indentation level as the declaration.

link|flag
K&R has opening brace on separate line for function definitions. – Constantin Oct 1 '08 at 19:46
Good point. But I think the idea of "on the same line" started with K&R. – Frank Krueger Oct 1 '08 at 19:47
I use K&R style in C and C++, but Sun style in Java and PHP. It's very strange how I can just flip between the styles at will. – Thomas Owens Oct 1 '08 at 19:48

Your Answer

Get an OpenID
or

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