vote up 52 vote down star
37

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
7  
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

81 Answers

vote up 3 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
2  
"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 32 vote down

Hungarian notation in any form

link|flag
5  
What about in code actually written by Hungarians in Hungarian? – MusiGenesis Oct 2 at 1:35
show 1 more comment
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 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
3  
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 33 vote down

Redundant parentheses:

if (((x) && (isValid())) || ((y < 1) && (y > 100))) {
// ...
}
link|flag
14  
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
9  
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
show 3 more comments
vote up 21 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 4 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
show 1 more comment
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
3  
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 18 vote down

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

// Temporary hack - buggy as hell. Will fix later.
link|flag
1  
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
1  
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
show 3 more comments
vote up 1 vote down

php ..

$dollar_ariables
link|flag
show 3 more comments
vote up 2 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 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 28 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 33 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 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 10 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 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 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 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 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
4  
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 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
show 3 more comments
vote up 2 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 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 4 more comments
vote up 12 vote down

In C, I saw someone get around the "two lines of code need a block" rule like this:

for(/*conditions*/)
    doThis(), doThat();

While I understand wanting to shorten code, that's ridiculous.

link|flag
1  
I don't understand wanting to shorten code. Are you trying to save disk space? – Trampas Kirk Mar 4 at 3:29
4  
Sure you want to save disk space. It's so expensive these days. – Graeme Perrow Apr 3 at 16:16
show 2 more comments
vote up 6 vote down

PHP:

$out = "
<html>
    <head>
    </head>
    <body>
    <p>Yeah, you guessed it, whole pages of html inside a string, with <a href=\"mypage.php\">links</a>, variables like this: $txtOneContent -  and all without syntax highlighting because it's all in a damn string!</p>
    <p>Make one tiny and innocuous change, and the website explodes.</p>
    </body>
</html>
";
echo $out;
link|flag
vote up 5 vote down

I really hate when people assign the same variable twice, for example:

DataSet ds = new DataSet();
ds = GetSomethingFromDB();

The first line is totally useless! who writes that doesn't realize that it will be overwritten in the next statement, it's wasting memory.

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

Leving the brackets before a longer loop.

while(foo == bar)
    for(i = 0; i < count; i++) 
    {
        /* code */
    }

Or a bit more ugly

while(foo == bar)
    for(i = 0; i < count; i++) {
        /* code */
    }

One more:

while(foo == bar) for(i = 0; i < count; i++) {
    /* code */
}
link|flag
5  
While I consider the first 2 perfectly acceptable (depending on the language), the last one should merit death for the person who wrote it. – Dan Herbert Apr 16 at 15:46
show 1 more comment
vote up 1 vote down
public Collection getMappingsBySponsor(String Mgr, String spons)throws SQLException, ClassNotFoundException, Exception
{
    StringBuffer sql = new StringBuffer(this.INV_NAME) ;
    sql.append("= '") ;
    sql.append(Mgr) ;
    sql.append("' AND ") ;
    sql.append(this.NAME) ;
    sql.append("= '") ;
    sql.append(spons) ;
    sql.append("' ORDER BY ") ;
    sql.append(this.SHORT_NAME) ;

    return getAMappings(sql.toString()) ;
}

There are better ways to do it, and it was like all functions written with this kind of method.

link|flag
vote up 0 vote down

Using undescriptive short-hand names for the arguments to main:

int main (int argc, char *argv[])
{
    //..
}

I always make them fully descriptive:

int main (int argumentCount, char *argumentList[])
{
    //..
}
link|flag
3  
Why? This is convention, everyone understands what argc and argv mean and do. Why break that? – Jasper Bekkers Apr 4 at 18:15
3  
I don't see any reason to maintain a convention simply because it is a convention. I think descriptive variable names are good coding style, so I apply them consistently. – eJames Apr 4 at 19:21
1  
@Jasper: Not everyone does. Ask any coder when they see it the first time. @eJames: I agree. I don't think the source code saving C-style naming of "argc" "argv" is worth the loss of readability. Sure most people who have done any C will recognize them and won't have any trouble, but if you ask me, it's cruft from a byte saving era we no longer need. – Trampas Kirk May 19 at 20:47
3  
I disagree with this instance. If you don't already know what they do and how they work, descriptive names probably wont help you terribly much. – TokenMacGuy May 30 at 23:34
4  
In general the advice is good, but I think for main you are causing more of a mental speed-bump because everyone knows what argc and argv do and how to use them. – Brian R. Bondy Jun 15 at 21:03
show 1 more comment
vote up 1 vote down

Joe Caldwell -MTG 2009

Reinvent EVERYTHING

Rewrites all of swing because "its too slow" and "has no features"

link|flag

Your Answer

Get an OpenID
or

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