up vote 233 down vote favorite
140
share [g+] share [fb]

When it comes to coding style I'm a pretty relaxed programmer. I'm not firmly dug into a particular coding style. I'd prefer a consistent overall style in a large code base, but I'm not going to sweat every little detail of how the code is formatted.

Still there are some coding styles that drive me crazy. No matter what I can't look at examples of these styles without reaching for a Vim buffer to "fix" the "problem". I can't help it. It's not even wrong, I just can't look at it for some reason.

For instance the following comment style almost completely prevents me from actually being able to read the code.

if (someConditional) 
// Comment goes here
{
  other code
}

What's the most frustrating style you've encountered?

link
58  
This should be a community wiki before it's reopened. Getting rep for having an opinion on best/worst type questions is inconsistent with the intent of the reputation system. – tvanfosson Oct 26 '08 at 21:45
23  
Please, no accepted answers for poll questions. I want to see the highest voted answer on top, not the one some single person likes best. – Fabian Steeg Jan 13 '10 at 17:11
5  
You know, I noticed that there is not a single response (as of now) that uses Haskell as the language with ugliness in it. There could be a good reason for that. – Robert Massaioli Jun 14 '10 at 3:11
15  
I will make a similar argument for INTERCAL. – Kevin Panko Jun 14 '10 at 14:09
1  
@Robert Massaioli, yes there is. It's because nobody who makes up programming standards like this knows what Haskell is :P – jdizzle Oct 19 '10 at 18:42
show 2 more comments
feedback

locked by Robert Harvey Oct 5 '11 at 5:29

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ(/faq).

closed as not constructive by Robert Harvey Oct 5 '11 at 5:28

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

148 Answers

Comments that come after the code they refer to. And boilerplate in comments that adds nothing to meaning. Example (not made up)

int count_;
// effects: The number of objects.

I would be interested to know if (a) other people have seen this style (b) anyone prefers it to the alternative. I think this originates in the C++ standard. In Working Draft, Standard for Progamming Language C++ from 2005-10-19, section 17.3, which lists the conventions used to describe the C++ library. It provides a list of attributes for functions. It includes Requires, Effects, Postconditions, Returns, Throws and Complexity. In the context of a library it makes sense to list a function prototype and then its characteristics. It makes no sense to me to do that in the code itself.

There is a style, unnamed as far as I know, in which all functions return a status code, and all calls to such APIs are placed inside an if-statement. An example is socket API calls in UNIX. For example, if all api calls return -1 on failure you may see something like this for a sequence of API calls:

if(api1() != -1) {
  if(api2() != -1) {
    if(api3() != -1) {
      // all three api calls were ok - do stuff...
    } else {
      // handle api3 error
    }
  } else {
    // handle api2 error
  }
} else {
  // handle api1 error
}

It seems like many people are completely comfortable with this. But I do not like the way it pushes the error handling out of the picture, moving it away from the API call it refers to. When you combine this style with selectvely ignoring some of the errors and omitting the brackets on one or more of the conditions, or where some additional work has to be done before one or more of the API calls, you have a style where a maintainer has to check for correctness every time they deal with it. Though more verbose I prefer

if(api1() == -1) {
  // error - escape somewhere, maybe return -1 to caller.
}

if(api2() == -1) {
  // error - escape
}

if(api3() == -1) {
  // error - escape
}

// All three calls succeeded - do stuff here.

To me the latter seems so transparent that I have no idea why anyone uses the former. Except maybe it makes the programming seem more exciting, as you arrive breathlessly inside all those conditional brackets ready to do the real work.

link
2  
+1, I hate seeing comments after the code they refer too. – dreamlax Mar 29 '10 at 21:32
feedback

Claustrophobic code:

int x;
for(x=0;x<10;++x){
    if(x==5) continue;
    dosomething(x);
}
while(unrelatedloop()){
    anotherbody();
    foo=bar;
}
int y=0;//comment
if(x==1) something();
if(y==1) something();

I need my breathing space! Furthermore, whitespace can be used to group related statements (vertical) or tokens (horizontal) together.

link
feedback

Code where the original developer used the names of his old girl friends as variable or function names (or, alternately, German numbers). That's the worst I've seen.

link
feedback

Tabbing identifiers

a_namespace::a_class  a
int                   b
char                  c

There is no reason to write code like that... I wonder what happens if you have already defined b and c and then you need a. Do you spend time tabbing all the other variables? Brr...

link
3  
yes, I do. I don't do this kind of things always...but in some places it is really useful. It is far more easy to read the code. – Javier De Pedro Apr 4 '09 at 17:39
3  
I particularly like aligning ='s or :'s in lists of assignments. Makes things just a bit nicer on my eyes. – TokenMacGuy May 30 '09 at 23:36
show 5 more comments
feedback
MyObject o = new MyObject();
Debug.Assert(o != null);

MyOtherObject o2 = new MyOtherObject();
Debug.Assert(o2 != null);

Come on! I know John Robbins et. al. say use Debug.Assert, but you don't trust the runtime to create your object?

link
3  
Depending on the language 'new' might even throw an exception which means one would never get to the assert statement. – foraidt Nov 5 '09 at 15:26
3  
.NET languages either produce the object, or throw. The assert can never fail. – Qwertie Jun 18 '10 at 17:37
feedback
private static final int TWO = 2;

'private' no less ..

link
show 1 more comment
feedback

Not understanding Boolean logic.

// If the foo happens or if the foo doesn't happen but the bar happens instead
if (foo || (!foo && bar))

Equivalent to:

if (foo || bar)

Even worse when there are more than two terms!

link
show 2 more comments
feedback

For me it's code that's deliberately hard to read, whilst ironically the developer thought they were making it easier to read. I posted this code snippet as an answer to another question, but it's just as relevant here. Here's an exact copy of code from something I work on, all the comments (or lack thereof) as identical to how it appears in the source code:

function getAttributes(&$a_oNode)
{
    $l_aAttributes = $a_oNode->attributes();
    if ($l_aAttributes === NULL)
        return array();

    $l_iCount = count($l_aAttributes);
    $l_i = 0;

    for ($l_i = 0; $l_i < $l_iCount; $l_i++)
    {
        $l_aReturn[$l_aAttributes[$l_i]->name()] = $l_aAttributes[$l_i]->value();
    }

    return $l_aReturn;
}

function getText(&$a_oNode)
{
    $l_aChildren = $a_oNode->child_nodes();
    if ($l_aChildren === NULL)
        return NULL;

    $l_szReturn = "";

    $l_iCount = count($l_aChildren);
    for ($l_i = 0; $l_i < $l_iCount; $l_i++)
    {
        if ($l_aChildren[$l_i]->node_type() == XML_TEXT_NODE)
            $l_szReturn .= $l_aChildren[$l_i]->node_value();
    }

    if (strlen($l_szReturn) > 0)
        return $l_szReturn;

    return NULL;
}

Someone obviously didn't read Joel Spolsky's article on Hungarian notation. This code just makes my head hurt.

link
6  
Say goodbye to that code, youy just released it under creative commons! – RCIX Sep 13 '09 at 10:00
show 7 more comments
feedback

Putting brackets on the same line as the code to execute inside those brackets. Here's some actual code from a web app I inherited. I will forever hate the guy who wrote this, as well as understand how PHP can get such a bad name (when used improperly).

if($Submit == "Complete Install" || $Submit == "Save Report")
    {
    $dbStatus = "Open";
    if($Submit == "Complete Install")
    	{
    	if(trim($Desc) == "")
    		$Error = "Invalid 'Install Description' provided!";
    	else
    		$dbStatus = "Closed";
    	}

    if(trim($ContactID) == "")
    	$Error = "Invalid 'Site Contact' provided!";

    if(trim($ContactID) == "AddNew" && trim($ContactName) == "")
    	$Error = "Invalid 'Contact Name' provided!";

    if(trim($ContactID) == "Attach" && trim($AttachID) == "")
    	$Error = "Invalid 'Site Contact' provided!";

    if(trim($ProductID) == "")
    	$Error = "Invalid 'Product Serial' provided!";



    if($Error == "")
    	{

                //snip 150 lines

        }
    }

Also, note how register_globals is enabled (-_-). And this exact same logic is copied and pasted in at least 20 different files.

link
feedback

Coding that uses a mixture of GNU and K&R i.e.

int function() {
    if (condition) {
        if (another condition) {
            DoStuff()
            }
        else {
            DoSomthingElse() 
            }
        }
    }

Unfortunately the code I maintain with has this bracketing style.

link
show 1 more comment
feedback

I've seen

#define ONE 1
#define TWO 2
#define THREE 3

etc

link
1  
This is essentially what FORTRAN 66 did as part of the compiler. Everything in any call string was always passed by reference. They got smarter in 77. – Dave Jun 28 '10 at 17:17
feedback

Space between ( and the rest )

link
2  
I use this style and it is more readable than without spaces, though. – silent Jun 25 '10 at 13:36
2  
The flip side, which is every bit as awful, is to jam the controlling keyword up against the following parenthesis, as in if(expr). Combine the two and you get the truly horrid if( expr ). – Loadmaster Jun 28 '10 at 1:49
1  
the "English" standard is using (this is some comments, without spaces) – serhio Jan 31 '11 at 16:51
show 6 more comments
feedback

I "like" this one :

if (foo == bar)
{
  DoSomething();
}
if (foo != bar)
{
  DoSomethingElse();
}

But my favorite is :

bool b = bool.Parse("true");
link
show 8 more comments
feedback

Usually something like this:

               if (true)
               {
                 if (thing = 7)
                 {
                   if (foo != 8)
                     Console.WriteLine("Don't delete me. I know what you did.");
                 }
                 else
                   do
                   {
                       It();
                   }
                   while(foo == 8)
               }
        else
        {
          switch otherThing:
           {
             case "A":
             Console.WriteLine("Your answer is not B!");
             break;
             default:
             Console.WriteLine(@"Your answer is not A!
             You fail at life. Everyone hates you.");
             break;
           }
        }

Stuff like this: Constant switches, loops, ifs and do-whiles, without a SINGLE LINE OF COMMENT. It just makes me want to scream at other coders.

link
feedback

She'd finish a line of code, she'd hit enter, hold space, and when the cursor gets "close enough" she'd start writing the next line of code there...

public func()
{
        int x = 0;
       double y = 0;
       string str = "";
           if(something)
             {
                 doSomething();
              andOtherStuff();
                }
              y = 8;
        x = 14;
        }

I worked with her on projects in school going through pages of her code. First things first, I'd have to make it readable... then I began adding my code to hers. It made it easy to track her changes though.

link
1  
Most good IDEs have a button for formatting the file/code...so this nightmare can be undone within one keystroke...luckily. @Po: The same reason people are using spaces for indentation in text processors, because 'I've always done it that way and it works'. – Bobby Aug 9 '10 at 9:49
show 2 more comments
feedback

While Style is number 1, and functionality is number 2.

link
9  
Form over function. I know of a company in Cupertino that suffers from that. – lttlrck Nov 3 '09 at 20:40
feedback

I'd probably been coding for 20 years and working in Perl for a couple years before I saw something like this in someone else's code:

$y = 2 if $x == 5;

I'd never seen this way of writing an if in any other languages, and it took a while before my brain stopped automatically assuming that everything after the assignment was a comment. I don't know of any other languages where this would be allowed. I found it weird.

link
4  
"Arse about face" would be my reaction to this code – Richard Ev Mar 3 '09 at 23:27
3  
it's in python 2.5+ and I love it. much prettier than a = b ? c : d – hasen j May 14 '09 at 16:22
3  
This style is what makes Perl, Perl. Perl allows one to express code in many syntactical ways in more kind to spoken language. Some would say it is beautiful. – Xepoch Nov 4 '09 at 5:33
show 10 more comments
feedback

A very strange C line of code:

int x = 0;
    int y = x+++++x;    /* what the hek !*/
    printf("y = %d", y);

Actually, this line doesn't pass the compiler check in VS and devc++ 4.9, but I believe it passed in devc++ 4.

link
1  
It's not how simple it is. It's how weired it looks like :) – Galilyou Mar 29 '09 at 9:48
3  
A nice case of undefined behaviour. – Alexandre C. Jun 25 '10 at 9:55
show 4 more comments
feedback

Multiple statements on the same line, e.g.

if ( condition ) { doThis(); doThat(); }

This takes readability down a couple of notches.

link
1  
totally agree, drives me bat shit – Jack Marchetti Jan 13 '10 at 22:53
show 4 more comments
feedback

I'm surprised that no one has mentioned this one. It's not as bad as brace misplacement, but I hate it when people put the one-line then branch on the same line as the if:

if(condition) dostuff;

It makes it MUCH more complicated to add debug statements, or set break points, and I never actually end up reading it correctly for some reason...

Screen real estate is NOT that expensive.

link
feedback

I've seen conditions written like these two snippets:

if(foo< bar) {
   ...
}
if(foo<= baz && baz!= 1) {
   ...
}

The developer wouldn't insert a space between left-hand variables and their comparators, saying he wasn't as interested in how the comparison was being done as much as which variables were being compared. This helped him better set apart the variables in the condition.

This was a very minor thing, but it utterly drove me up the wall every time I encountered it.

link
feedback

Worst ever?

# TODO: Document This!

...exceptionally good when it's found at the top of every method declaration and at the top of the file.

link
3  
Well, at least it's an official TODO, so i don't think this is too bad. Of course, it ought to actually be done sometime later... – mafutrct Feb 25 '09 at 9:06
3  
//TODO: Maintain illusion that I'll care about this later – johnc Jul 1 '10 at 5:10
feedback

I've been dealing with a large chunk of legacy code that's been written in bad Perl by somebody with a Unix shell background.

Because of the Unix background they've adopted the convention of using a zero return value as success. Everbody else in the Perl world this evaluates to false. Because of this you have variants of:

if (not $success ) {
  # happy path
} else {
  # failure
}

everywhere - mixed in with "normal" Perl libraries with the saner convention of false == failure, true == success.

Evil.

link
1  
That's what SYMBOLIC_CONSTANTS are for. Thus if (cond == SUCCESS) is fine, but if (flag == true) is awful. – Loadmaster Jan 26 '10 at 1:56
show 1 more comment
feedback

Extra empty lines in the source code, especially in the very beginning or end of the method/class:

public bool HasSomething()
{




     int a = this.A + this.dA;
     // and other method's code here

     return false;




}
link
feedback

C#-specific: use of #region directive for a very small code blocks:

public class MyLittleClass
{
    #region Fields

    private bool _isSomethingLoaded;

    #endregion

    // The rest of the class
}
link
show 1 more comment
feedback

Using ifdef...endif to 'branch' code from the main trunk

This rubbish:

#ifdef BUGFIX_1
   //some rubbish code
#endif
#ifdef BUGFIX_2
   //more garbage
#endif

This is rubbish for so many reasons:

  • Lack of readability. You can't easily tell which code path to follow.
  • Error prone when getting rid of the guards
  • Doesn't work with the toplevel makefiles
  • Makes code harder than it should be to manage.
  • Easy to create broken builds.
link
show 1 more comment
feedback

¡uʍopəpᴉƨdn əpoɔ ƃuᴉpɐəᴚ

Having to stand on your head to read code:

sub main() {                                       sub 
                                                   uʍopəpᴉƨdn($);
    for my $input (reverse <>) {
        chomp $input;
        my    $ʇndʇno = uʍopəpᴉƨdn($input);
        say   $ʇndʇno;
    }
}
link
feedback

Verbose naming conventions:

class Item {
    int idOfTheItem;
}

Mixing different languages:

String UserNomDeFamille;

Not to mention that Java allows UTF-8 in source code. You can see horrors like these:

public void SetDépart(Date départDate) {
    ....
link
1  
For the last one, it's called i18n (internationalization). What makes the English alphabet any better than other alphabets? I think we should use Chinese characters for everything--there are more Chinese than English people after all. This is more of a globalization problem in general. – Nelson Rothermel Jun 30 '10 at 16:12
1  
+1 for the last one, here in sweden I've seen people use å, ä and ö (our special characters) in java. – Viktor Sehr Nov 1 '10 at 16:33
show 2 more comments
feedback

1) unnecessary javadoc for every instance variable and method. for e.g. see below

/**
 * The logger instance.
 */
private final Logger logger = Logger.getLogger(BasicCollector.class);

/**
 * The collection backing this collector.
 */
protected Collection collection;

/**
 * The ordered list of sort criteria for this collector.
 */
protected List sortCriteria;

2) passing the instance properties of the same class to instance methods...like below

class A
{
 B bRef;

void foo()
{
bar(bRef);
}

void bar(B anotherRef)
{
}
}
link
show 1 more comment
feedback

Putting statements on multiple lines, especially when it's really not necessary, as in this case:

if (bOne &&
    bTwo &&
    bThree &&
    bFour &&
    (!bFive ||
    !bSix))
{
   // do something
}

And it's even more ugly counterpart:

if (bOne
    && bTwo
    && bThree
    && bFour
    && (!bFive
    || !bSix))
{
   // do something
}
link
7  
This is subjective, so I'm not downvoting it, but I often do split if conditions like this, especially when there are six conditions like this example. – Zan Lynx Oct 26 '08 at 20:18
2  
I think what you ought to do is create a submethod and then call that method. The name of the method should be descriptive to tell a new developer what it is doing. – andHapp Dec 30 '08 at 23:51
2  
It's much better to wrap that whole condition in a meaningfully named variable, then get the value for it from a meaningfully named, unit testable method. – Trampas Kirk Mar 3 '09 at 21:50
show 5 more comments
feedback

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