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.

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

1 2 3 4 5
up vote 336 down vote accepted

Interestingly enough, that's

if (0 == foo()) {}

i.e. putting the constant on the left to avoid an == / = mixup. I know it would be better to do it, and I feel bad for it, but reading it is for me a mental speedbump.

Doesn't say much except that being annoying doesn't mean it's necessarily bad.

link
55  
This used to be strongly encouraged if you were working in C or C++. It saves you from a nasty bug that the compiler will joyfully allow. Nowadays any static analysis tool will alert you if you use = instead of ==. – Bill the Lizard Oct 26 '08 at 12:22
20  
Any sane compiler can warning you as well. – JesperE Oct 26 '08 at 15:33
44  
"Mental speedbump". I like that analogy. – JesperE Oct 26 '08 at 15:33
14  
Thomas, yes, as in "int 1 = x;" – jmucchiello May 30 '09 at 23:07
79  
I call this the Yoda programming style. "hmrrrmmm if 0 is foo() on go you". – Thomas Mar 28 '10 at 3:26
show 27 more comments
feedback

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
163  
It hurts my eyes. – Mike Powell Feb 9 '09 at 21:14
44  
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 '09 at 3:32
106  
Wow. I've never seen such beatiful java code. – Rob Lachlan Mar 3 '09 at 22:04
42  
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 '09 at 22:29
125  
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 '09 at 16:38
show 42 more comments
feedback

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
37  
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 '09 at 3:32
61  
Damn. We say "if it's raining, open your umbrella" and NEVER "if it's true that it's raining, take your umbrella"... Testing explicitely against boolean is as verbose and as un-natural as the second example – Johan Buret Feb 24 '09 at 16:57
106  
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 '09 at 17:07
50  
Clarity?! What is unclear about "return x < 24;" ? Totally +1 on hatred factor – flq Feb 24 '09 at 19:36
19  
@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 '09 at 1:18
show 21 more comments
feedback

Useless comments.

Example:

i++; // Increment of i
link
81  
at least it didn't say "by 1" – benPearce Dec 31 '08 at 0:21
3  
I used to - simply to aid the reader of my code if they were new to the particular language I was writing in. If you're reading along and you don't know what "i++" does, it can help to have a comment. – Dalin Seivewright Feb 24 '09 at 19:35
12  
@Dalin If you're writing a very basic tutorial/book, sure. If you're doing absolutely ANYTHING else, it's completely redundant. People reading your code are likely going to be at least slightly familiar with the language. If a keyword or operator is unfamiliar, letmegooglethatforyou.com – Stuart Branham Mar 3 '09 at 20:46
108  
/* Yea, and God said to Abraham, you shall increment the value by one. One being greater than zero yet less than two. After incrementing, thou shalt then emit the original value. The original value being one -- not zero nor two -- less than the new value. */ – Tyson May 19 '09 at 16:09
3  
+1 i hate it when ppl do that too – user176121 Oct 2 '09 at 13:54
show 14 more comments
feedback

Omission of braces just because they are not required for single-statement blocks. Like this:

if (SomeCondition)
    DoSomething();

If you spent enough time staring at code like this

while (SomeCondition)
   DoSomething();
   DoSomeOtherThing();
DoYetAnotherThing();

and wondering "is this a bug or just somebody's sloppy indentation?", then I bet you know what I mean. If you didn't... well, I guess you were just lucky so far. :-)

link
55  
That’s interesting, I’m glad I am allowed to do that (even in for or while loops), the extra braces look ugly to me. – zoul Oct 26 '08 at 15:45
35  
It's less offensive if it's all on the same line, rather than split on two lines. – neonski Oct 26 '08 at 16:15
31  
braces helps when you change your mind and add a few more lines. – artificialidiot Oct 26 '08 at 16:46
128  
Completely disagree. One liners are much nicer looking without the braces. – JTA Oct 27 '08 at 5:46
53  
Atomiton: why complicate things? if there are braces around every block, you don't need to think of the rules at all. – Ed S. Dec 31 '08 at 0:12
show 39 more comments
feedback

The use of type prefix in variables name in modern languages like C#,

int iIndex;
string strMessage;
link
18  
That's not Hungarian, it's very weak variable name typing. Hungarian is vastly more complex. – Cruachan Oct 26 '08 at 20:47
58  
That's not Hungarian. Please, please stop bashing Hungarian if you do not understand what it is!! – Yarik Oct 27 '08 at 20:12
25  
yes it is, please look at the formal definition from wikipedia: "Hungarian notation is a naming convention in computer programming, in which the name of a variable indicates its type or intended use" – pablito Oct 31 '08 at 21:49
9  
@Yarik: Many reasons 1) you can know the type of the var just from the tooltip, intellisence, etc 2)it doesn't prevent bugs of bad type assignments since the compilation in this case fails 3) if the type of the var changes you have to change the name? 4) less elegant(readable) but this is my opinion – pablito Nov 1 '08 at 5:12
8  
I'm against Hungarian 100% -- buth apps and system. In the Wikipedia example, what is wrong with rowPosition? why use rPosition? Why be ambiguous? Certainly, if the project I was given had a document outlining what each notiation meant I would be less against it. Good luck with finding that doc. – Nazadus Mar 22 '09 at 20:30
show 27 more comments
feedback

Inconsistent indentation.

I can put up with tabs or spaces, all sorts of brace matching, and various depths of indentation - as long as it is used consistently across a project.

link
3  
use python and you'll learn to object to the rest of stupid things. – Cheery Oct 26 '08 at 11:21
34  
In Visual Studio, CTRL-K, CTRL-D will automatically fix up formatting... – Mitch Wheat Dec 31 '08 at 0:21
10  
In vim, the '==' command will clean up indentation as well. – Maha Jan 13 '10 at 23:59
3  
@Mitch I've seen some code that even CTRL-K, CTRL-D cannot fix. VS just poops. – Nate Jul 8 '10 at 22:21
show 7 more comments
feedback

Inconsistent brace usage within the same construct:

if (something)
   this->noteSomething();
else
{
   several();
   statements();
   within();
   braces();
}
link
48  
Yes, I find the opposite ugly, braces around a single statement ALWAYS uglifies my code. Braces are meant only to group. This code is perfectly readable. – Atømix Nov 2 '08 at 9:43
12  
+1. I seen people make mistakes in C/C++ by adding a new method call, indenting and forggetting to add the braces. (with brace/no-brace other way round) – Mitch Wheat Dec 31 '08 at 0:33
5  
There is no rule that you don't use braces for single statements, but virtually every "good style" guide will tell you that consistency wins. It's the same with comments - basically redundant, but in their redundancy allow other people to figure out if your code works as you intended... – DevSolar Apr 15 '09 at 14:22
23  
+1 As a fan of no-braces-around-one-liners, I use braces around all blocks if any blocks need them. – Chris Lutz Aug 19 '09 at 1:45
6  
@Gary, Braces do much more than than group- they are the only way in C/++/#/Java/Script to declare a new level of scoping, which is not just "a bunch of statements". – David Souther Jun 25 '10 at 13:55
show 6 more comments
feedback

Placement of commas like this:

enum Whatever 
{
      SomeValue
    , AnotherValue
    , YetAnotherValue
}

I understand the rationale, but my eyes bleed when I have to read something like that. Very inhumane.

What I don't understand is why language syntax designers do not allow to have redundant delimiter characters at the ends of character-delimited lists. Of course, something like this

enum Whatever 
{
    SomeValue,
    AnotherValue,
    YetAnotherValue,
}

would be a little inhumane too but, in my humble opinion, not nearly as ugly as the first sample...

link
12  
C99 enums allow the trailing comma; C89 does not (so don't use them unless you're sure you're using C99, always). – Jonathan Leffler Oct 26 '08 at 16:54
16  
PHP, Ruby, Python all allow trailing commas. Several other languages as well. I commonly leave it in to make adding another entry or removing one easier. – jcoby Oct 26 '08 at 17:20
16  
Many constructs in C# allow for this, such as enums and object initializers. – Wyatt Oct 26 '08 at 20:16
16  
I disagree. I MUCH prefer the comma-before-values. Maybe it's just me... but once I got used to it, it just looks and feels better to me. – Atømix Nov 2 '08 at 9:36
16  
@Christopher, but then you can't just comment out the first entry. What's the difference? – jmucchiello May 30 '09 at 23:12
show 26 more comments
feedback

GNU style, of course.

link
13  
return type is on top of the function declaration. It looks out of place. – artificialidiot Oct 26 '08 at 16:49
10  
Indentation and brace-style is rather awkward. – staticsan Feb 9 '09 at 21:50
4  
The return type on top convention has a deep-rooted rationale: functions are much easyer to find with grep. If you want to find the function foobar, you type "$ grep -n foobar raboof.c" and get the function declaration. Frustrating, yes, but usefull for old coots using vim and command line. – terminus Dec 21 '09 at 20:13
28  
I believe Linus Torvalds said something to the effect that the first step in writing good C code was to print out copy of the GNU coding standards and burn them. I agree; the brace indentation truly combines the worst of all brace styles. – Michael E Jun 24 '10 at 23:41
3  
Sounds a little like Stallman and his followers just jerking themselves off, and creating egotistical standards. – Dominic Bou-Samra Jul 1 '10 at 0:57
show 8 more comments
feedback

Spaceless concatenation like this:

string s = "Bob"+" "+objWhatever.ToString()+obj2.ToString()+"isadork";
link
1  
@staticsan: spaceless concatenation is permitted in C#; I just find it annoying and more difficult to read. – MusiGenesis Feb 10 '09 at 1:35
35  
I have abandoned string concatenation in favor of String.Format. String.Format("Bob {0} {1} is a dork", objWhatever, obj2) is much clearer. – IMil Feb 24 '09 at 20:52
1  
@MusiGenesis: I think the reason it's better in PHP is because the operator (.) is so small it makes it a lot more readable than + or & in other languages. For example "Bob ".objWhatever.obj2." is a dork" works just as well with or without the spaces in my opinion. – CodeMonkey1 Apr 3 '09 at 16:30
4  
Thank God VS fixes the spaces when typing the semicolon. – GeReV Jan 21 '10 at 18:00
2  
@Thomas: sorry, I just love parentheses, so calling .ToString() gives me two of them for free. – MusiGenesis Mar 28 '10 at 2:48
show 5 more comments
feedback

Overkill abstraction of object oriented design.

link
16  
Like, for instance, this: stackoverflow.com/questions/582603/factory-pattern – Aaron Maenpaa Feb 24 '09 at 17:31
10  
This is a design problem, not a style problem though. – Permaquid Mar 27 '10 at 18:43
show 3 more comments
feedback

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
3  
haha nice one! +1 – jasonco May 9 '09 at 3:30
7  
Using WinForms in VS 2005 and later, you can set GenerateMember to false on a Label (or whatever) that you don't need to reference in code. Then it doesn't have to have a name, and you won't see "Label25" in Intellisense. – Kyralessa Mar 23 '10 at 21:16
show 2 more comments
feedback

I haven't seen SESE (Single-Entry, Single-Exit) mentioned yet:

int somefunc( somearg arg, someotherarg otherarg ) {
    int ret = 0;
    if ( arg ) {
        if ( otherarg ) {
            // ok, we're good
            ret = ...;
        } else {
            ret = -1;
        }
    } else {
        ret = -1;
    }
    return ret;
}

Makes me puke. Guard clauses are so much better:

int somefunc( somearg arg, someotherarg otherarg ) {

    if ( !arg )
        return -1;

    if ( !otherarg )
        return -1;

    // ok, we're good
    return ...;
}
link
14  
ugh. a vendor did all their customization code like this. The funny thing is, it was in python. And the example given here isn't nearly deep enough. this pattern really causes nausea when there are 5 or 6 levels of nesting. – Peter Recore Mar 28 '10 at 3:03
5  
I'm in favor of SESE. int somefunc(somearg arg, someotherarg otherarg) { int result = -1; if(arg == true && otherarg == true) { result = 1; } return result; } – kirk.burleson Jun 18 '10 at 1:51
2  
I use the multiple return guard clauses too, and still get some heat for it. The arguments for a single return usually go 1) It is a better design because the closing of database connection, disposing of objects, etc. can be better coded in a single place. 2) With a single entry and exit, you can make a single log "entering" and a single log "exiting" to more easily track the flow. – aaaa bbbb Jun 18 '10 at 20:41
6  
If you've got exceptions in the language, you won't have a single exit guarantee. If you've got try…finally (or something equivalent) then you don't need single exit anyway as the compiler will synthesize all that on-function-exit crud for you. – Donal Fellows Aug 9 '10 at 9:01
2  
Don't You love arrow heads? I've seen one that forced me to scroll like 3 pages horizontally on my 21" monitor. It got some nice for`s, continue`s, while`s in it too. Brilliant time waster. – Arnis L. Aug 16 '10 at 19:41
show 4 more comments
feedback

Since programmers have to write correct code without syntax errors, I am overly picky when it comes to obvious typographical errors in variable and function names. Especially not since rename-refactoring is just a click away.

A few examples:

m_bHasLoosed
SetDesturctionMode
GetAdminitsrationRights
HasPlayerWinningGame

The last one being the worst of all.

link
13  
A mistrake is a mystical gardening implement not unlike a moonshovel. – recursive Dec 31 '08 at 0:03
16  
for the last 2 years I've been trying to figure out what the original programmer who named this method was thinking... LoadSchmulaka() – SomeMiscGuy Mar 3 '09 at 21:13
67  
I propose that the winner is "Referer", of HTTP fame. Every time a user clicks a link in a web browser, this 7-character brainfart is transmitted across the world. – j_random_hacker Mar 7 '09 at 18:16
31  
Re: "Referer". Just think of the gigabytes of data saved EVERY DAY by omitting that one 'r'! – Barry Brown May 30 '09 at 23:35
8  
@Mitch Wheat: That should be irks, not erks. Ironic, isn't it? – SLaks Nov 20 '09 at 3:39
show 16 more comments
feedback

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
6  
@Ed Griebel: glad I've never had to use ClearCase then – just somebody Feb 12 '10 at 21:34
show 1 more comment
feedback

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
30  
It used to be required in C. Hasn't been for a long time. – Ferruccio Feb 24 '09 at 17:37
15  
A function with that many variables probably needs to be more than one function. – Trampas Kirk Mar 3 '09 at 20:44
9  
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 '09 at 22:47
8  
I got slammed in my first-ever code review for not doing this. – MusiGenesis Oct 2 '09 at 1:38
6  
The flip side is burying variable declarations in the middle of long function bodies so they are hard to find. It's a readability trade-off. – Loadmaster Jan 13 '10 at 23:15
show 12 more comments
feedback

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
14  
Heh, imagine a code review now, and someone says: the "false" case should be made explicit. Of course, there should be never a switch statement without default case, so we could use that for throwing an exception... – Svante Feb 24 '09 at 17:23
21  
Obviously, there was a bug in the compiler that affects if/else expressions! – Kevin Panko Aug 26 '09 at 17:40
9  
They must have been worried about hacked booleans being fed into their program... – RCIX Sep 13 '09 at 9:57
13  
I think Duff's Device is a more creative use of switch. – dreamlax Mar 29 '10 at 20:40
show 11 more comments
feedback

Redundant parentheses:

if (((x) && (isValid())) || ((y < 1) && (y > 100))) {
// ...
}
link
47  
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 '09 at 22:16
46  
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 '09 at 14:27
17  
I guess you're not a fan of Lisp ;) – Matt Fichman Dec 8 '09 at 8:02
4  
@matt I know you are joking, but one of the advantages of lisp is that you cannot have redundant parentheses: adding parens always change the meaning of the statement, and there is no situation where a paren or bracket is optional. This actually improves consistency, which actually does improve readability. – Justin Smith Mar 28 '10 at 3:54
7  
@David: I think that's really the way to go if you're interested in helping your fellow developers. if(x && isValid() || y < 1 && y > 100) {} may be easier to read, but only if I'm 100% sure of the precedence table. Otherwise, if( ( x && isValid() ) || ( y < 1 && y > 100 ) ) {} looks almost as good and will prevent confusion for less enlightened developers. – Eric Mar 29 '10 at 22:06
show 10 more comments
feedback

When the variable and method/function names are as unintuitive as they can be:

void function1(int i, int j) {
    for(index, index++, index < 5) 
       for(index1, index1++, index1 < 10)

Code is meant to be as self-explanatory as possible and the most control we as programmers have is on things we can name/define ourselves (comments is really the next level and should be done only if required).

link
19  
You demonstrate another pet peeve of mine: using the canonical loop variables i and j as function arguments, preventing their use in the loops! ;-p – Shog9 Oct 26 '08 at 15:42
13  
Which language has for-loops organized like that? It seems to be 'for (initializer, reinitializer, condition)', which is not the canonical C and C-derived order. – Jonathan Leffler Oct 26 '08 at 16:52
show 1 more comment
feedback

Hungarian notation in any form

link
53  
What about in code actually written by Hungarians in Hungarian? – MusiGenesis Oct 2 '09 at 1:35
4  
I suppose in that specific case it would be ok ;) – Maurice Flanagan Oct 2 '09 at 16:40
4  
@Loadmaster Well I can only speak for myself. I used to use it in my early years... then, to put it this way, I became international ;-) – Péter Török Feb 20 '10 at 23:25
18  
Normally I hate hungarian notation, but I like it for naming UI controls: btnOK, txtFirstName, cbIPAddress ... – Qwertie Jun 18 '10 at 18:00
14  
pnWhat vIs advSo adjBad prAbout adjHungarian nNotation? – dan04 Sep 15 '10 at 4:49
show 1 more comment
feedback

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

// Temporary hack - buggy as hell. Will fix later.
link
11  
Hey, you found my comment! Now fix it! - Jk but that made me laugh +1 – Chance Mar 7 '09 at 0:16
13  
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 '09 at 10:49
3  
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 '09 at 23:22
12  
You missed the date 02/07/1995 and initials xxx – lttlrck Nov 3 '09 at 20:17
1  
Sometimes there just isn't time to go back and fix stuff... and there's the danger of breaking things. Also, if it works a year later, maybe it wasn't such a hack after all! – flexxy Jan 23 '10 at 21:48
show 5 more comments
feedback

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
3  
Even mixing styles for different statements could be forgiven and maybe in rational in some places. Mixing them together in the same statement is painful – MikeJ Jun 18 '10 at 19:02
show 3 more comments
feedback

Undocumented (uncommented) hacks.

After almost two decades in the field, I can tolerate the lack of comments in general, and I can tolerate justifiable hacks. But uncommented hacks?!...

link
14  
I agree. "// HACK ALERT" should be second nature to any programmer. – MusiGenesis Oct 26 '08 at 12:43
7  
I feel it neccesary to qualify this. Just saying that a bit of code is /* a bit hackish */ is worse than no comment at all. On the other hand, explaining that a bit of code is not expected to correctly handle all corner cases, explaining which corner cases, and what happens now when it encounters those cases (raises an exception? divides by zero?) is correct. – TokenMacGuy May 30 '09 at 22:56
3  
I sometimes write more than a full page of comment to explain the how's and why's of an egregious hack. – Qwertie Jun 18 '10 at 17:52
3  
@Qwertie: So depending on how long it takes you to type that comment you probably could have just made the correct fix instead of a hack. – Matt Phillips Jun 25 '10 at 9:24
2  
Haha ... Uh no. – Qwertie Jun 25 '10 at 14:02
show 2 more comments
feedback
if (SUCCEEDED(hr))
{
    hr = ...
    if (SUCCEEDED(hr))
    {
        hr = ...
        if (SUCCEEDED(hr))
        {
            hr = ...
            if (SUCCEEDED(hr))
            {
                hr = ...
                if (SUCCEEDED(hr))
                {
                    hr = ...

                    // up to 19 nested if's...
                }
            }
        }   
    }
}

Just because they heard one day that there should be only one return statement per function.

link
2  
I am at a loss of words to this. – Chris Marisic Mar 28 '10 at 1:53
6  
And of course, every function body is encapsulated with a big try.. catch(...) block, just in case. Aw... – Gabriel Cuvillier Mar 28 '10 at 10:47
3  
I unfortunately see this very often... – Ates Goral Oct 4 '10 at 21:22
show 1 more comment
feedback
    if(something)
    {
doSomething();
    }
    else
    {
somethingElse();
    }

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

link
4  
Could this just be a difference between your tab size settings? – finnw Mar 3 '09 at 20:38
5  
Emacs auto-indent FTW! – Brian Postow Mar 3 '09 at 21:41
4  
mixing spaces and tabs would get you this – Inverse Mar 27 '10 at 19:48
1  
Emacs is never FTW. Vim > Emacs. – ThiefMaster Nov 22 '10 at 22:44
show 1 more comment
feedback

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
10  
I don't understand wanting to shorten code. Are you trying to save disk space? – Trampas Kirk Mar 4 '09 at 3:29
24  
Sure you want to save disk space. It's so expensive these days. – Graeme Perrow Apr 3 '09 at 16:16
7  
+1 this is awe-inspiring – TokenMacGuy May 30 '09 at 23:22
22  
I'm going to start using this ASAP – lttlrck Nov 3 '09 at 20:16
18  
Wow, you can do that? AWESOME – Nick Bedford Jan 14 '10 at 0:31
show 11 more comments
feedback

I just don't like prefixes in front of class field names: string m_name;

link
24  
They are absolutely not useless. Quite on the contrary, they're very much required, considering that you'd else risk name conflicts with public properties. Differentiation on capitalization alone is quite error-prone and doesn't work in languages like VB: – Konrad Rudolph Nov 2 '08 at 17:59
5  
I would always go for using this.name or Me.name – Atanas Korchev Nov 11 '08 at 23:22
18  
I also think this is essential. I hate looking at variables and trying to figure out where they came from. I always think I missed the declaration of a variable when reading the code and stumbling upon a member variable without an m_ preceding it. It wastes time trying to find where it was declared. – Dunk Feb 9 '09 at 21:54
4  
In PHP where you have to say $this->member, they should never be used. – jmucchiello Mar 3 '09 at 22:05
6  
@devsolar just don't use deep functions. – Vadim Ferderer Jul 14 '09 at 22:44
show 8 more comments
feedback

Useless variable names

int temp1 = 10;
int temp2 = 5;
string a = "test";
link
14  
I think only the local variables which have a very short life time should be declared with these names. – andHapp Dec 30 '08 at 23:52
5  
@Meeh - if the variables were named properly, the method wouldn't need to be "well documented" as it would be self-documenting – Alconja May 8 '09 at 4:18
3  
Perhaps with the intended usage after the 'temp'? Such as 'tempRowPosition' or 'tempFooArray'. – Ron Warholic Nov 3 '09 at 20:45
show 8 more comments
feedback

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
8  
I actually like extraneous "this" usage. I like it that I can glance at a variable and know what it's scope is. (So call me hungarian :-) – Andrew Shepherd Jun 17 '10 at 23:29
6  
If there's one thing you can remove from variable names, it's the "1" at the end. – Qwertie Jun 18 '10 at 17:49
show 8 more comments
feedback
1 2 3 4 5

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