up vote 60 down vote favorite
26
share [g+] share [fb]

You know the ones that make you go WTH and are easily spotted by a coworker just passing by?

Please keep it one gotcha per answer to simplify voting.

link|improve this question
1  
close discussion question, not a programming question. – Mark Rogers Jan 30 '09 at 17:33
2  
o.O, It's not argumentative, I give you subjectve, and it's very much about programming. – Filip Ekberg Jan 30 '09 at 17:42
2  
It says "Is your question about programming? We prefer questions that can be answered, not just discussed." in the ask a question page. This is a question that can only be discussed. – Mark Rogers Jan 30 '09 at 18:43
24  
Is anyone else fighting the urge to go through and fix the syntax and bugs on these answers? :) – Bill the Lizard Apr 1 '09 at 13:10
2  
It's community wiki - I suspect you've missed that Carl :) – Goran Aug 8 '10 at 22:45
show 3 more comments
feedback

closed as not constructive by Jeremy Banks, Bill the Lizard Sep 20 '11 at 1:47

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.

92 Answers

1 2 3 4
up vote 191 down vote accepted
if (status = UNDER_ATTACK) {
    launch_nuclear_missiles();
}
link|improve this answer
2  
@Tanj: Or SQL. Switching between T-SQL stored procedures and .NET code too often regularly causes this kind of problem in one of the two places. – Sean Hanley Oct 2 '08 at 16:36
10  
The really scary part is I've occasionally found this bug/feature useful. It's a really scary syntax but ... if ( Foo* p = TryGetSomeValue() ) { ... } Scary but oh so tantalizing – JaredPar Oct 2 '08 at 17:24
9  
It took me a while to understand why the previous developer was in the habit of writing: if (UNDER_ATTACK == status)..... – Adam Liss Oct 31 '08 at 5:43
6  
@ChrisA - this would generate a syntax error in C#. Actually, it will generate a warning in any modern C or C++ compiler as well if people would only set the warning level high enough. – Ferruccio Jan 30 '09 at 22:24
4  
@Loren Pechtel: I'm sure its position is helped by the brilliant sample usage :) – Jerph Dec 6 '09 at 12:03
show 14 more comments
feedback

I was stumped by:

    int i = 0;
    while (i < 100);
    {
        //do stuff
        i++;
    }

But the compiler warning proved very helpful!

link|improve this answer
10  
This has caused almost as many headaches as missing semicolons. – Bill the Lizard Oct 2 '08 at 15:33
28  
That must be one of mine. I starred at your snippet for about a minute going, "Huh? What's the problem" :P – Dana Oct 2 '08 at 15:34
3  
@PeterAllenWebb you'd miss some of the cool statements like while (*p++ = *q++); to copy a string – Kyle Cronin Oct 2 '08 at 15:43
14  
another great reason to use the one true brace style! huzzah! – nickf Oct 3 '08 at 0:13
2  
I may be an old fart, but IMO, syntax like (*p++ = *q++); to copy a string is only 'cool' in a theoretical, syntactic elegance kind of way. It's an example of intellectualising at the expense of readability. In truth, any fool can learn this sort of thing. But only fools think it's clever. – ChrisA Dec 24 '08 at 17:30
show 8 more comments
feedback
int* y,z;

This is just a failing of the language :(

link|improve this answer
7  
another good reason why declarations should be on their own line – Joe Philllips Oct 2 '08 at 16:47
23  
This is a good reason to switch to the convention of: int *y,z; – Wedge Oct 2 '08 at 18:27
9  
@Wedge: and the reason to stick with type* is "The star (*) (or reference (&)) is a modification of the type and not the name. That's the /cool/ thing about C/C++ you can argue about so much useless things :-) – jk. Oct 3 '08 at 10:34
show 7 more comments
feedback

I don't like the fact that braces are optional in C-like languages if you only have a single line after a conditional. For example:

if( x ) 
    foo();

Many years ago, I hastily edited a statement like that to read:

if( x )
    bar();
    foo();

It took me a lot longer than it should have to fix that bug. So, now my rule is that if I don't have braces, everything goes on the same line. So, this is OK:

if( x ) foo();
link|improve this answer
38  
Not a bad compromise to the "always require braces" debate. – Bill the Lizard Oct 2 '08 at 15:59
4  
to me, doing this: if(x) { foo(); } instead of this: if(x) foo(); is the same thing as doing this: x = (y+z); instead of x = y+z; it's unecessary and ugly. – Kevin Oct 2 '08 at 18:46
6  
My standard is always use braces unless it is very, very, very, very obvious. – Paul Nathan Nov 10 '08 at 21:26
11  
I just use python :) – defrex Jan 31 '09 at 3:15
3  
Bah. A better rule is to not make this mistake. Braces for single-liners is ugly. – rlbond Dec 27 '09 at 3:11
show 7 more comments
feedback

(Java) Being able to refer to static members through expressions:

Thread t = new Thread(...);
t.start();
t.sleep(1000); // Which thread does it look like this will affect?

Fortunately Eclipse warns about this.

link|improve this answer
9  
Until I read this, I considered being able to call static methods through an instance reference a feature. Now I know better... – Michael Burr Feb 17 '09 at 3:56
show 15 more comments
feedback

In C++ or C, this one always used to get me back in the day (depending I'm sure on your compiler and/or IDE):

my main.C:

#include "SomeClass.H"

int foo() { // Compiler gives cryptic error message here about the declared type of foo().
  ...
}

my SomeClass.H:

class SomeClass {
    ...
} // <- No semicolon

It took me many times of making that mistake before I finally caught on that the compiler was really just trying to tell me "missing semicolon at the end of your include file". Why the compiler(s) could never figure that out and give me a proper error message, I'll never know.

link|improve this answer
1  
"Why the compiler(s) could never figure that out and give me a proper error message" -- Include files do not have to be compilable on their own. Their contents get included into the includer before the real compilation starts. – Windows programmer Oct 3 '08 at 5:21
5  
@Windows programmer - that's no excuse, really. These compilers do wonderful things already, adding another reasonable error message for a common occurrence doesn't seem out of character for them. – Tanktalus Oct 18 '08 at 13:44
1  
Having to add a semicolon after a closing brace is very untypical for C, it's annoying and a constant source of error. It is caused by a language misdesign of the original Kernigan and Richie C language: When declaring a struct, you can optionally define a variable of this type in the same statement. So the semicolon is necessary to distinguish between class Foo {...}; and class Foo {...} foo; What a superfluous shortcut! I consider it bad style to stuff two loosely related declarations into one statement and would rather do without this feature! – msp Jul 1 '11 at 8:03
show 3 more comments
feedback

Should be obvious from my name. Forgotten Semicolon.

link|improve this answer
6  
Upvoting for the name reference. – leek Oct 2 '08 at 16:00
17  
Oh man, I love getting 100 compiler errors, none of which actually point to where the mistake is. – andy Oct 2 '08 at 18:09
1  
Upvoted. But maybe you should edit this answer to be more specific. Once community wiki kicks in and your name disappears, this answer won't make any sense. ;) – MrValdez Oct 3 '08 at 4:52
1  
@MrValdez: Done! – Forgotten Semicolon Oct 3 '08 at 15:28
show 3 more comments
feedback
if( x & 3 == 1)
{
    // This will never be run.
}
link|improve this answer
3  
Unless, of course, you overload the & binary operator! – strager Jan 31 '09 at 4:00
47  
Oualline's rule from "Practical C": There are fifteen precedence rules in C (...). The practical programmer reduces these to two: 1) Multiplication and division come before addition and subtraction. 2) Put parentheses around everything else. – Michael Burr Feb 17 '09 at 4:02
7  
I have my own two rules: 1) Use parentheses whenever you're uncertain. 2) Never study the precedence table. Works for me: not too many parentheses, and nobody complains about my expressions. – David Thornley Jun 2 '09 at 20:29
2  
@Michael - I think it's important to also know the relational/logical/assignment precedences. I would much rather see if(x > 3 && x < 6) than if((x > 3) && (x < 6)), and who wants to see a += (b + c) honestly? Those are easy (and by easy I mean intuitive to me) and common enough that most programmers should know them. – Chris Lutz Sep 2 '09 at 22:59
show 8 more comments
feedback

(C#) Scoping within switch, which makes this illegal:

switch (something)
{
    case 0:
        int x = 10;
        ...
    break;
    case 1:
        int x = 20; // No, still in same scope as case 0...
        ...
    break;
}

If you add appropriate braces, it works of course.

link|improve this answer
2  
Same with C++. Catches me many times. =[ – strager Dec 3 '08 at 1:47
1  
@Erik: You can put braces around every code block you like. – VVS Jun 12 '09 at 22:27
2  
@Erik: you can add braces to anything. This is legal: if(foo) {{{{bar();}}}} – Zifre Jun 12 '09 at 22:27
8  
@VVS: wow, it's kind of weird that we both posted the same comment within 5 seconds of each other on a 6 month old post. – Zifre Jun 12 '09 at 22:28
show 6 more comments
feedback

In C++

Employee e1("Dave","IT"); //OK
Employee e2("Jane"); //OK
Employee e3(); //ERROR - function prototype
link|improve this answer
7  
This is an annoying C feature that C++ inherited. As if anyone in the world has ever declared a function IN THE MIDDLE OF ANOTHER FUNCTION. – rlbond Dec 27 '09 at 3:15
1  
@Shawn: the code fragment above declares 2 variables (or instances), named e1 and e2, whose type is Employee. e3, however, is a 'function prototype' of a function that takes no argument and returns an Employee. – René Nyffenegger Jan 7 '11 at 0:03
1  
@rlbond : There are so much examples of functions (or other symbols/types) declared/defined in function I don't know where to start the list. Let's ignore Pascal, Java, C#, and play with C . . . In C, you can declare and use a struct inside a function (which, in itself, could seem strange) . . . For C compatibility, C++ authorizes this . . . But as a C++ struct can have methods, it means you can in C++ define inside a function A a struct B with a static method C, effectively making this method C a function inside a function A . . . I already used that technique in production code. – paercebal Apr 7 '11 at 22:16
show 1 more comment
feedback
// double-loop:
for(int i=0; i<10; ++i){
  for(int j=0; i<10; ++j){
    // do something
  }
}
link|improve this answer
5  
If I had a stock option for every time I've done that.... – David Thornley Jan 30 '09 at 22:58
2  
Had this once. Luckily - only once. – Arnis L. Jun 21 '09 at 20:16
1  
I'ts only a problem when you're incrementing I instead of j or something in the second loop. – RCIX Sep 1 '09 at 23:34
1  
Yes i've done that, multiple times i think... – RCIX Sep 1 '09 at 23:34
2  
so annoying. Copy/paste FTL – rlbond Dec 27 '09 at 3:18
show 2 more comments
feedback

Forgetting a MoveNext in a classic ASP recordset loop

while rs.EOF = false
    Response.Write rs("name")
wend
link|improve this answer
2  
Forgetting MoveNext was especially fun if you were copying rows from one database to another. Somehow the destination computer would get filled up and crash. – MusiGenesis Oct 2 '08 at 17:07
1  
I did something like that so many times I actually put a sticky note on my monitor that said "rs.MoveNext". – Corin Sep 2 '09 at 23:08
show 2 more comments
feedback
public class FooHolder
{
  private String foo;

  public void setFoo(String foo)
  {
    foo = foo;
  }
}
link|improve this answer
2  
Any IDE worth it's salt should flag this one instantly. You could also declare all parameters as final to protect against this. – Outlaw Programmer Oct 2 '08 at 17:15
1  
Using a good naming convention for properties and their backing fields will keep this from happening. – Robert Rossney Oct 2 '08 at 19:00
7  
That standard prefix might even be something like "this." – Greg D Oct 18 '08 at 14:21
show 6 more comments
feedback

Python: I've got some list of strings:

important_strings = [ 'one',
                      'two',
                      'three',
                      'four'
                    ]

Later, I realise that 'five' is important too:

important_strings = [ 'one',
                      'two',
                      'three',
                      'four'
                      'five'
                    ]

...

(solution: end every line with a comma. this is fine in python: lst = [1, 2, 3, ] )

link|improve this answer
3  
also relevant when writing enumerations in C and C++ where the same problem (and solution) applies :) – workmad3 Oct 3 '08 at 6:31
2  
This never bothered me until I started working in JavaScript. It took me nearly an hour the first time to figure out why IE choked on my code but nothing else did… – Ben Blank Dec 24 '08 at 17:40
1  
It's the same with Perl too. – Rob K Jan 30 '09 at 17:43
1  
Lua also allows a comma after the last entry. – Boojum Jan 30 '09 at 19:24
show 3 more comments
feedback

Spent a while on this one recently (C/C++)

// Change / to \
UnixToDosPath(path);

The \ is followed by a space, which means that the VS2005 syntax coloration treats the next line as real code, and compiles it as such, while GCC (arm-elf-gcc 4.2.2) treats it as a comment, but despite what the documentation says, does not warn about the trailing space. Both are correct, since this behaviour is implementation defined in C99. Eventually asked for a second pair of eyes from another engineer, who spotted the problem instantly...

link|improve this answer
show 5 more comments
feedback

I've heard stories about people setting values to null:

if (foo = null) { .. }

so a good way to prevent that is to put the constant first

if (null = foo) { .. } //should nearly always throw an error or warning

I personally never really encounter these syntactical errors.

link|improve this answer
4  
the foo = null will throw a warning with any decent compiler. the null = foo will throw an error. Regardless, I consider the first form more readable. It's a mistake I almost never make, and the compiler warning saves me if I do. Never release code that has warnings. – rmeador Oct 2 '08 at 16:03
2  
though i find that putting the variable on the left to be much more readable ("if x is equal to 5" > "if 5 is equal to x"), that's actually a really good way to avoid that all-too-common error. good tip! – nickf Oct 3 '08 at 0:18
show 3 more comments
feedback
  1. Octal numbers in C (and some other languages).

    if(42 != 042)
        printf("WTF?!");
    
  2. The constructor+field initialization syntax in C# 3.0 is very convenient, but I keep making the same mistake.

    Correct:

    var d = new DeepThought()
    {
        Answer = "42",          //note a comma
        YearsToWait = 15000000  //you may put a comma here as well (but aren't required to)
    }; //this is actually an end of statement, so the semicolon is mandatory
    

    My wrong version:

    var d = new DeepThought()
    {                           //hey, this looks like a code block!
        Answer = "42";          //all my life I've been using semicolons as separators.
        YearsToWait = 15000000; //I'm not going to change my habits, you stupid compiler!
    } //why do I need to put a semicolon after a curly?
    

    Yes, I understand why the correct version is correct and mine is erroneous, but my reflexes trick me every time.

link|improve this answer
1  
In Haskell, octal literals start with 0o (zero-oh), for consistency with hex literals which start with 0x (zero-ex), which nicely avoids the first issue... – ephemient Jun 21 '09 at 20:42
feedback

In Java:

if (someString == "Y"){
  ... never executes this code, even when someString.equals("Y") ...
}
link|improve this answer
14  
The fact that this sometimes works makes it worse. – user4891 Jan 30 '09 at 19:06
show 3 more comments
feedback

Rethrowing exception in C#. This causes grief for every Java developer I've met who later used C# {sarcasm} even though everyone knows that C# and Java are basically the same! {/sarcasm}:

try {
   ...
} catch(Exception e) {
   //Do something

   throw;     //Correct C# syntax, compiler error in Java
   //throw e; //Correct Java syntax, compiles in C# but undesired behavior (rewrites stack)
}
link|improve this answer
show 3 more comments
feedback

This one made my coworkers laugh, including my boss...

    void someclass::foo( int a )
    {
        switch( int a )
        {
            // ... wtf?
        }
    }

It took me like 5 minutes until I realized what was going on.

link|improve this answer
3  
Yeah it does not compile now but it did at the time, and I don't even remember the compiler showing any warnings either. I'm talking about 10 years ago so we were probably using VS2004. – Trap Jan 31 '09 at 12:16
14  
@Trap - welcome to our time traveling visitor from the future! – Michael Burr Feb 17 '09 at 4:11
show 5 more comments
feedback

(C#) The \x escape. Quick, how different are "\x9Good compiler" and "\x9Bad compiler"?

link|improve this answer
1  
In CSS, the spec designers were thoughtful enough to make all the character escapes unicode, case insensitive and variable length up to 6 digits... so you end up with no choice but to write "\u000008Bad". – flussence Dec 24 '08 at 17:54
1  
@Joshua: That wouldn't help in C#. "\x08Bad compiler" still isn't just a tab and then "Bad compiler". It's U+08ba and then "d compiler". – Jon Skeet Dec 24 '08 at 19:36
6  
Is there a "Corrected Jon Skeet" badge? :) – kirk.burleson Nov 17 '10 at 15:31
4  
@kirk: we only have badges up to gold. – progo Apr 15 '11 at 11:36
show 6 more comments
feedback

This post of mine got 14 up votes, and I consider it a pretty big gotcha. Basically it boils down to that in in VB.Net, the syntax for getting item "i" in an array, and for calling function and passing in "i" are exactly identical. Also, you can call a function without using the parentheses. So, the following code can represent 3 things

Foo(Bar)

  1. Calling function Foo, and passing in the argurment Bar
  2. Accessing the element at position Bar, from the array Foo.
  3. Calling function Foo, which returns an array, and accessing the element at position Bar
link|improve this answer
7  
That's… horrifying. – Ben Blank Jan 30 '09 at 22:46
1  
What happens if you create function Foo that takes an integer parameter and returns an array and call it with Foo(3)? – Wayne Werner Aug 5 '10 at 18:19
1  
It assumes that you are calling the function Foo and passing 3 in as the integer parameter. Because it would be invalid to call the function without passing the parameter, it assumes the code is valid. Now, if the parameter was optional, I think it would still assume that you are passing it in as a parameter. – Kibbee Aug 5 '10 at 19:30
show 1 more comment
feedback

We've all done the other way round; am I the only person who has written

x == 1;

and spent ages wondering why x wasn't changing?

link|improve this answer
3  
I even submitted a SO question about this recently because I went mad debugging it, only to feel like an idiot after. stackoverflow.com/questions/941035/… – tj111 Jun 5 '09 at 19:01
show 2 more comments
feedback

For me, when returning to C or C++ after lots of time in the Java/C# world, I always always forget that class and struct declarations end with a semicolon.

So I do a C# style

class foo {

}

And scratch my head at the compiler errors.

link|improve this answer
show 2 more comments
feedback
DELETE FROM customers;
// without where
link|improve this answer
3  
That's why we have International Backup Awareness Day :P – Richard JP Le Guen Jul 22 '10 at 12:38
show 3 more comments
feedback
#define DEBUG 1;
link|improve this answer
feedback

The most annoying syntax gotcha in Perl:

my $value=something() if ($condition);
link|improve this answer
1  
"my $static if 0" is (was) a common idiom, though it's been heavily discouraged for a long time now. With 5.10 finally breaking it, the fun is over... – ephemient Jun 21 '09 at 20:45
show 5 more comments
feedback

Python:

(A semantics gotcha, not a syntax one, but in the same spirit)

The famous "mutable default arguments are initialized once" gotcha.

def f1(arg=list()):
    arg.append(1)
    return arg

for ii in "surprising":
    print f1()

[1]
[1, 1]
[1, 1, 1]
[1, 1, 1, 1]
[1, 1, 1, 1, 1]
[1, 1, 1, 1, 1, 1]
[1, 1, 1, 1, 1, 1, 1]
[1, 1, 1, 1, 1, 1, 1, 1]
[1, 1, 1, 1, 1, 1, 1, 1, 1]
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1]

A better way to handle this is:

def f2(arg=None):
    if arg is None:  arg=list()
    arg.append(1)
    return arg


for ii in "better":
    print f2()

[1]
[1]
[1]
[1]
[1]
[1]
link|improve this answer
show 2 more comments
feedback

While I hate that you can do an if statement without having to use brackets, the biggest "gotcha" problem I've seen is when you mistakenly do something like:

if (x = y)
{
   // do stuff
}

It will produce strange results until you realize that you're actually assigning the value of y to x.

link|improve this answer
feedback

Extra comma in a JavaScript object literal:

var options = {
    title: "Foo",
    readOnly: true,
    width: 300,
    //color: "#333"
};

The last line may just be commented out or deleted. Firefox/Safari/Opera/Chrome won't complain about the extra comma after the width property. IE6 will stall in its tracks and won't even process any of your code. You'll have lots of fun looking for that single extra comma (JSLint helps).

link|improve this answer
show 1 more comment
feedback
1 2 3 4

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