vote up 31 vote down star
15

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.

flag
11  
Is anyone else fighting the urge to go through and fix the syntax and bugs on these answers? :) – Bill the Lizard Apr 1 at 13:10
show 5 more comments

87 Answers

1 2 3 next
vote up 130 vote down
if (status = UNDER_ATTACK) {
    launch_nuclear_missiles();
}
link|flag
3  
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
show 14 more comments
vote up 79 vote down

I was stumped by:

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

But the compiler warning proved very helpful!

link|flag
4  
This has cause almost as many headaches as missing semicolons. – Bill the Lizard Oct 2 '08 at 15:33
5  
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
1  
@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
5  
another great reason to use the one true brace style! huzzah! – nickf Oct 3 '08 at 0:13
show 8 more comments
vote up 51 vote down
int* y,z;

This is just a failing of the language :(

link|flag
2  
another good reason why declarations should be on their own line – d03boy Oct 2 '08 at 16:47
8  
This is a good reason to switch to the convention of: int *y,z; – Wedge Oct 2 '08 at 18:27
show 6 more comments
vote up 51 vote down

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|flag
12  
Not a bad compromise to the "always require braces" debate. – Bill the Lizard Oct 2 '08 at 15:59
1  
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
1  
I just use python :) – defrex Jan 31 at 3:15
show 7 more comments
vote up 42 vote down

(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|flag
show 7 more comments
vote up 37 vote down

Should be obvious from my name. Forgotten Semicolon.

link|flag
4  
Upvoting for the name reference. – leek Oct 2 '08 at 16:00
1  
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
show 4 more comments
vote up 35 vote down

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|flag
show 5 more comments
vote up 28 vote down
if( x & 3 == 1)
{
    // This will never be run.
}
link|flag
16  
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 at 4:02
2  
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 at 20:29
show 10 more comments
vote up 27 vote down

(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|flag
1  
Same with C++. Catches me many times. =[ – strager Dec 3 '08 at 1:47
1  
@Erik: you can add braces to anything. This is legal: if(foo) {{{{bar();}}}} – Zifre Jun 12 at 22:27
2  
@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 at 22:28
show 7 more comments
vote up 24 vote down

Forgetting a MoveNext in a classic ASP recordset loop

while rs.EOF = false
    Response.Write rs("name")
wend
link|flag
1  
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
show 3 more comments
vote up 20 vote down

In C++

Employee e1("Dave","IT"); //OK
Employee e2("Jane"); //OK
Employee e3(); //ERROR - function prototype
link|flag
vote up 18 vote down

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|flag
show 5 more comments
vote up 16 vote down
public class FooHolder
{
  private String foo;

  public void setFoo(String foo)
  {
    foo = foo;
  }
}
link|flag
1  
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
show 7 more comments
vote up 16 vote down

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|flag
2  
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
1  
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 2 more comments
vote up 14 vote down
  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|flag
show 1 more comment
vote up 14 vote down
// double-loop:
for(int i=0; i<10; ++i){
  for(int j=0; i<10; ++j){
    // do something
  }
}
link|flag
1  
Had this once. Luckily - only once. – Arnis L. Jun 21 at 20:16
show 3 more comments
vote up 14 vote down

In Java:

if (someString == "Y"){
  ... never executes this code, even when someString.equals("Y") ...
}
link|flag
3  
The fact that this sometimes works makes it worse. – mccoyn Jan 30 at 19:06
show 3 more comments
vote up 13 vote down

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|flag
1  
also relevant when writing enumerations in C and C++ where the same problem (and solution) applies :) – workmad3 Oct 3 '08 at 6:31
1  
It's the same with Perl too. – Rob K Jan 30 at 17:43
1  
Lua also allows a comma after the last entry. – Boojum Jan 30 at 19:24
show 4 more comments
vote up 12 vote down

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|flag
show 2 more comments
vote up 10 vote down

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

link|flag
show 6 more comments
vote up 10 vote down

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|flag
1  
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 at 12:16
7  
@Trap - welcome to our time traveling visitor from the future! – Michael Burr Feb 17 at 4:11
show 4 more comments
vote up 10 vote down

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|flag
show 2 more comments
vote up 8 vote down

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|flag
show 3 more comments
vote up 7 vote down

The most annoying syntax gotcha in Perl:

my $value=something() if ($condition);
link|flag
show 6 more comments
vote up 7 vote down

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|flag
show 2 more comments
vote up 7 vote down
#define DEBUG 1;
link|flag
vote up 5 vote down
DELETE FROM customers;
// without where
link|flag
vote up 5 vote down

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

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

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

Your Answer

Get an OpenID
or

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