vote up 55 vote down star
39

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?

flag
8  
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
show 3 more comments

82 Answers

vote up 0 vote down

I agree with some of the other posters. Renaming variables is just a waste of time.

Here's an example in PHP:

$user_details = mysql_fetch_assoc($user_details_query);

$firstname = $user_details['firstname'];
$lastname = $user_details['lastname'];
$email = $user_details['email'];
$phone = $user_details['phone'];

Surprisingly I've seen several programmers code this way. It baffles me that they can't use array variables.

link|flag
2  
I do this all the time (although I never use PHP). Saves you from nasty typos where you spell 'email' wrong the 10th time you use it. – erikkallen Mar 3 at 22:23
show 5 more comments
vote up 3 vote down

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|flag
vote up 6 vote down

Code with stupid, pointless comments comes to mind:

public void doer() {
    for (int i = 0; i < 10; i++) {
        if (a == true) {
            ...
        } // end if
    } // end for
} // end doer

Yes, even on methods where the // end <something> comes only a handful away from the start.

link|flag
2  
I only do that if I have several if / for / while statements nested and it's not easy to tell what scope a particular brace is closing. Then I leave myself a TODO: refactor this ugly routine. – Graeme Perrow Apr 3 at 16:20
1  
I agree. If your methods/loops/conditions are so long/complicated/nested that you need "//end <blah>" then your code clearly needs to be refactored. Big code smell. – Alconja May 8 at 6:35
show 2 more comments
vote up 2 vote down

I absolutely hate it when people don't format their SQL in a readable, consistent way. The "L" stands for language, people!

Also, why do people insist so strongly on ALL-CAPS'ing SQL code? It doesn't really serve any purpose I know of other than making it harder to read.

link|flag
5  
I find the CAPS makes it easier to split out the keywords for when people or tools pullout your CRs. – Matthew Whited May 21 at 17:17
show 2 more comments
vote up 4 vote down

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|flag
vote up 4 vote down

A former colleague of mine insisted on using getter and setter methods for all member variable access - inside the class that owns the variables.

And to make it worse he always made the getters & setters public, even when they didn't need to be.

link|flag
1  
Using getters and setters even inside the class allows the use of mocked objects. And then they're really easy to write unit tests for. Public getters and setters allow you to modify those member variables for test purposes at run time. It's a GoodThing(tm). – Trampas Kirk Mar 3 at 21:48
1  
Sounds like madness to me - classes should only expose data that needs to be exposed. – Richard E Mar 3 at 23:25
show 2 more comments
vote up 3 vote down

I know a lot of people love this, but using "this." in front of every class variable drives me nuts.

The reason it's supposed to be used is to identify class variables. It's extremely bad at that since a missing "this." does not PROVE that it's a local variable.

Also, your GUI will color them differently. If you're not using a GUI that does, stop typing this. and go get a real editor! This kind of thing is why everyone keeps telling you to upgrade.

The real reason (and I can sympathize) is that programmers like consistency and it drives them nuts that you so often have to have this:

void func(String name) {
    this.name=name;
}

to avoid collisions. Personally I don't have a problem with that inconsistency, but if I did, I'd use this solution instead:

void func(String pName) {
    name=pName;
}

Relying on a manual process (like some programmer deciding to use "this." before every instance variable) is just going to lead to some time where you see a variable without "this." and ASSUME it's local. Use something more deterministic.

link|flag
show 4 more comments
vote up 11 vote down
    if(something)
    {
doSomething();
    }
    else
    {
somethingElse();
    }

Makes me want to cry, specially when you are deep in a nest of some sorts

link|flag
1  
Could this just be a difference between your tab size settings? – finnw Mar 3 at 20:38
show 2 more comments
vote up 8 vote down

I watched this video Improving Code Quality with Code Analysis from the PDC, and I couldn't believe this example which was provided.

public FldBrwserDlgExForm(): SomeSystem.SomeWindows.SomeForms.SomeForm
{
    this.opnFilDlg = new opnfilDlg();
    this.foldrBrwsrDlg1 = new fldrBrwsrDlg1();
    this.rtb = new rtb();
    this.opnFilDlg.DfltExt = "rtf";
    this.desc = "Select the dir you want to use as default";
    this.fldrBrwsrDlg1.ShowNewFldrBtn = false;
    this.rtb.AcpectsTabs = true;
}

This always makes me angry. When developers rename variables because they believe it saves time and effort. It makes my brain hurt.

Here is what it's supposed to say, you tell me, which one is easier to read?

public FolderBrowserDialogExampleForm(): System.Windows.Forms.Form
{
    this.openFileDialog1 = new openFileDialog();
    this.folderBrowserDialog1 = new FolderBrowserDialog();
    this.richTextBox1 = new RichTextBox();
    this.openFileDialog1.DefaultExt = "rtf";
    this.folderBrowserDialog1.Description = "Select the directory you want to use as default";
    this.folderBrowserDialog1.ShowNewFolderButton = false;
    this.richTextBox1.AcceptsTabs = true;
}

p.s. In the video she says it's a real MSDN sample. Which blew me away! Looks like something a junior would write.

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

Not naming UI elements. I'm dealing with a codebase now that has a tabcontrol, and the controls in each tab aren't UserControls so I think it's up to Button37 and TextBox25 by now.

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

I found this the other day in work when trawling through our source control. I think it's one of the most creative uses of the switch syntax I've ever seen;

bool flag;

// snip

switch(flag)
{
    case true:
    {
    	// Do something
    }
    break;

    default:
    {
    	// Do something else
    }
    break;
}
link|flag
3  
Obviously, there was a bug in the compiler that affects if/else expressions! – Kevin Panko Aug 26 at 17:40
show 4 more comments
vote up 0 vote down

Symbian C++ coding. Too many types of "strings". So many classes and it doesn't look like C++.

link|flag
vote up 4 vote down

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|flag
1  
It's not how simple it is. It's how weired it looks like :) – 7alwagy Mar 29 at 9:48
show 1 more comment
vote up 1 vote down

php ..

$dollar_ariables
link|flag
show 3 more comments
vote up 19 vote down

Any code block in a year-old source file preceded by:

// Temporary hack - buggy as hell. Will fix later.
link|flag
2  
This is acceptable when you are coding under a deadline. Do you program for a living? Are you saying you have never done this? – Antony Carthy May 26 at 10:49
2  
Oh, sure, I've done that. But then I fix it later. I don't abandon it and let it sit there for the next several years until it causes a problem that takes time to fix. – Tyson May 26 at 23:22
1  
You missed the date 02/07/1995 and initials xxx – hapalibashi Nov 3 at 20:17
show 2 more comments
vote up 26 vote down

Declaring all variables at the start of a function, away from the scope in which they're used:

void ugly() {
    int x, y, i, j, count, length, count2;
    bool done, match, nomatch, p, q;
    double f, g;
    char *buff, *buff2;

    // ...
}
link|flag
4  
It used to be required in C. Hasn't been for a long time. – Ferruccio Feb 24 at 17:37
1  
A function with that many variables probably needs to be more than one function. – Trampas Kirk Mar 3 at 20:44
3  
I like that style, but not quite like that. Hate > 1 variable declared per line. Up-front declaration is nice when a quick glance shows what you're working with, and gives you a list of data you may need to validate. Although... variables are too visible/persistent/unnecessarily initialized. – Triynko Apr 16 at 22:47
show 4 more comments
vote up 5 vote down

Intermixing double and single quotes in JavaScript, in the same piece of code:

var options = {
    foo: "Some text",
    bar: 'Copy paste is fun',
    wtf: "(" + x + ')',
    baz: "It's cool"
};

Yes, it's a convenience when your string literals contain quotes, but I prefer uniformity of style in code. It's not that hard (or relatively more unreadable) to escape quotes using "\".

link|flag
1  
It's easier to read that way though. – Ed Swangren Mar 3 at 22:57
vote up 22 vote down

The coding style that bothers me the most is people who comment out code in revision-controlled code -- and then never delete it! One step even worse is revision-controlled code that has dozens of files that are no longer used or even linked to. Grr..

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

Redundant parentheses:

if (((x) && (isValid())) || ((y < 1) && (y > 100))) {
// ...
}
link|flag
18  
Let's not get too carried away here, since redundant parentheses can avoid confusion. The C precedence table, too often copied in newer languages, is overly confusing and somewhat illogical. – David Thornley Mar 3 at 22:16
11  
I agree on the (x) and (isValid()), but the rest is perfect IMHO - it allows reading the code without checking the operator precedence table in your mind... – DevSolar Apr 15 at 14:27
1  
I don't mind a few extra brackets (as long as people format their code appropriately). – Mark Simpson May 30 at 22:44
1  
I actually printed the precedence table for C and Perl and posted it on my wall. Doing that really helped me. The comparisons are always the highest precedence, then the &&, and the lowest is the || operator. The expression above is equivalent to: if (x && isValid() || y < 1 && y > 100) { } – Kevin Panko Aug 26 at 17:37
show 2 more comments
vote up 5 vote down

I agree with most of the above: hatred of inconsistent indenting, bad variable names, etc. I also hate longer than 80 column lines. I like to have 2 open windows at a time, and always having them be 80col means that I know how big a line I'm working with.

Also: multiple statements on one line:

i = 3; j = 5; k = 8;

And for some reason, I can't stand indented braces:

if(test)
  {
    code...
  }

erph.

link|flag
4  
Get a wider monitor? Enforcing constraints on everybody for one person's code viewing style isn't very cooperative. Survey the team for how many characters fit on their screens, then use that. If they all use your system, fine, but 80 characters can kill readability of a lot of code. – Trampas Kirk Mar 3 at 20:47
show 3 more comments
vote up 6 vote down
if (var = val) 
{
    someaction();
}
else {
    if (var = someOtherVal)
    {
        someotheraction();
    }
    else
    {
        if (var = yetSomeOtherVal) 
        {
        .
        .
        .

Sure it works but I actually saw this once and got and puked a little. In my mouth.

link|flag
vote up 32 vote down

Hungarian notation in any form

link|flag
6  
What about in code actually written by Hungarians in Hungarian? – MusiGenesis Oct 2 at 1:35
show 1 more comment
vote up 4 vote down

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|flag
3  
"Arse about face" would be my reaction to this code – Richard E Mar 3 at 23:27
1  
it's in python 2.5+ and I love it. much prettier than a = b ? c : d – hasen j May 14 at 16:22
show 6 more comments
vote up 114 vote down

Explicitly testing against boolean literals:

if(foo == true)
{
   ...
}

and (Joel Spolsky mentioned this on the podcast) refusing to return boolean expressions:

if(x < 24)
{
    return true;
}
else
{
    return false;
}

that makes me crazy.

link|flag
3  
I don't see why this is bad. If they do it this way and commented it well, I would just assume the programmar wanted clarity and not desperately saving a few lines of code. – Hao Wooi Lim Feb 10 at 3:32
1  
@Hao: because ignoring (or feigning to ignore) that an expression can return a boolean type and not using this capability is laziness (or worse). I am not fan of super conciseness, on the contrary, but extra parentheses and above examples makes me cringe. – PhiLho Feb 14 at 17:47
11  
It's outright retarded. It says "I do not understand expression evaluation". To think this is in any way a matter of clarity is an insult to the reader. – annakata Feb 24 at 17:07
3  
I find this usually is caused by code cruft. There may at one time have been stuff before the returns and then it got removed and the big if-else remains. – jmucchiello Mar 3 at 21:10
5  
@David Conversely, sometimes you do want to explicitly check against a boolean. For example in Javascript it's typical for callbacks to return explicit false to suppress the default behaviour, whereas not returning a value (the return value is undefined) should not suppress it. – Kieron Mar 7 at 1:18
show 10 more comments
vote up 4 vote down

Macro-filled code where 99.9% of lines of code use at least one if not more macros making the code a language unto itself mostly.

I did have this with my first out of school job where this is what the server developer did that he thought was a good idea. It eventually got to be OK, but by then I had spent a couple of years in it and was the most senior employee that ran it.

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

Can't stand this:

if (condition) {
    # ...
}

Not sure why, either. I've always had a new line for braces. I also always keep a new line for return, so this also bothers me:

function a($x)
{
    $y = $x * $x;
    return $y;
}
link|flag
show 6 more comments
vote up 4 vote down

Worst ever?

# TODO: Document This!

...exceptionally good when its found at the top of every method declaration and at the top of the file.

link|flag
1  
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... – echorhyn Feb 25 at 9:06
vote up 149 vote down

For a basic university course in programming, we were supposed to write a simple client program connecting to a server. Here is a part of the server code we were given, written by someone who obviously really, REALLY prefers python's syntax to Java's.

It was only about 50 lines in total, so it's really no big deal, and we didn't have to do anything with it except run it. But the style still bothers me.

import java.net.*                                         ;
import java.io.*                                          ;
import java.util.*                                        ;
public class Server                                       { 
    public static void main( String[] args)               {
        try                                               {
            ServerSocket sock = new ServerSocket(4712,100);
            while(true) new Handler(sock.accept()).start();}
        catch(IOException e) {System.err.println(e);}     ;}} 

class Handler extends Thread                              {
    public void run()                                     {
    Random random=new Random()                            ;
    try                                                   {
            //yada yada yada
    catch(Exception e) {System.err.println(e);}           ;}}
link|flag
16  
It hurts my eyes. – Mike Powell Feb 9 at 21:14
6  
amazingly, it was a pleasure to read! although I would guess a pain to write while maintaining the vertical line to the right! – hasen j Feb 10 at 3:32
18  
Wow. I've never seen such beatiful java code. – Rob Mar 3 at 22:04
11  
Reminds me of winter when the plow trucks come through and push all the snow to the side of the road :) That's a very interesting coding style. One could really mess with coworkers' heads, especially if one moved the column of scope operators far off to the right. "What? C#? How does this compile?" – Triynko Apr 16 at 22:29
26  
This is plain awesome, that's what it is (I love python). Whoever whote this code should be given a medal. Posthumously, of course. – shylent May 10 at 16:38
show 28 more comments
vote up 26 vote down

mixing the bracket styles between K & R and that other style...

if (condition){
}
else
{
}

Inconsistent mixing of initialization with declaration

int x,y,z=0;

  x = 1;
  y = 1;
link|flag
vote up 1 vote down

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|flag
show 1 more comment

Your Answer

Get an OpenID
or

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