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 80 vote down

I was stumped by:

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

But the compiler warning proved very helpful!

link|flag
5  
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
6  
another great reason to use the one true brace style! huzzah! – nickf Oct 3 '08 at 0:13
1  
@nobody: you would´t. you could do while (*p++ = *q++) {}; – Leonel Martins Oct 18 '08 at 12:33
show 7 more comments
vote up 130 vote down
if (status = UNDER_ATTACK) {
    launch_nuclear_missiles();
}
link|flag
4  
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
1  
@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 at 22:24
show 13 more comments
vote up 0 vote down
if(calculateSomething()){
   return true;
}
else {
   return false;  
}
link|flag
show 6 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 29 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
3  
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 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 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 1 vote down

Overloading an operator and forget that you have overloaded it. Few time later, you have weird behavior and you do not understand why the code is acting weird... then you realize the operator change the behavior.

Exemple : == with NULL was always returning true...

link|flag
vote up 0 vote down

Prior to Eclipse:

class Person {
    Person (String name) {
        //parameter assigned to itself as field hidden
        name = name;
    }
    private String name;
}
link|flag
vote up 1 vote down

I share this with new developers who hate strict datatypes in .NET languages:

VB6 was very liberal in type checking, and if omitted it would assume variant. This caused many odd results as it tried to assume the datatype. For example:

Dim x, y As Integer

Would result in y being defined as an Integer and x being defined as a Variant.

Oddities like this resulted in a lot of debugging, but gave me some easy tests to screen prospective developers.

link|flag
vote up 0 vote down

Forgetting to declare an interface or a class as public has sent me for a loop more than once.

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

Oh! And when using Rhino Mocks to mock a class, forgetting to make a method virtual

link|flag
vote up 21 vote down

In C++

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

Querying for results and then trying to eliminate unwanted records...

DELETE Users
SELECT *
FROM Users u
WHERE u.Reputation > 10000
link|flag
1  
By the way, nice example. – kbrinley Oct 2 '08 at 18:09
show 4 more comments
vote up 53 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
13  
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
2  
I just use python :) – defrex Jan 31 at 3:15
show 7 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
3  
@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 54 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 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 2 vote down

The trailing semi-colon on a conditional in C/C++

 if (status == -1);
 {
     printf("failed\n");
 }

I've spent hours not finding that...

link|flag
vote up 0 vote down

In c# creating a new class in a new file and not explicitly declaring it public.

link|flag
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 1 vote down

If I want to declare a list/array inline in Java, C# and C++ I think, I've gotta use braces.

Braces are otherwise used for one thing: to denote logical blocks.

I don't consider the elements of a list a logical block of code. I have to look up inline list declaration every time.

Why can't I do new array(foo, bar, qaz, bin, barz) to declare an array?

link|flag
show 1 more comment
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 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 12 vote down

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

link|flag
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
show 5 more comments
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 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 11 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 1 vote down

I go from classic ASP to C# all day

Dim index = 1
link|flag
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.