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.
|
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. |
||||
|
|
|
|
||||
|
|
|
I was stumped by:
But the compiler warning proved very helpful! |
||||||||||||||||
|
|
|
This is just a failing of the language :( |
|||
|
|
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:
Many years ago, I hastily edited a statement like that to read:
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:
|
||||||||||||||||
|
|
|
(Java) Being able to refer to static members through expressions:
Fortunately Eclipse warns about this. |
|||
|
|
Should be obvious from my name. Forgotten Semicolon. |
|||
|
|
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:
my SomeClass.H:
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. |
|||
|
|
|
||||||||
|
|
|
(C#) Scoping within switch, which makes this illegal:
If you add appropriate braces, it works of course. |
||||||||||||
|
|
|
Forgetting a MoveNext in a classic ASP recordset loop
|
||||
|
|
|
In C++
|
|||
|
|
|
|
Spent a while on this one recently (C/C++)
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... |
|||
|
|
|
||||
|
|
|
I've heard stories about people setting values to null:
so a good way to prevent that is to put the constant first
I personally never really encounter these syntactical errors. |
||||||||
|
|
|
|
|||
|
|
|
||||
|
|
|
In Java:
|
||||
|
|
|
Python: I've got some list of strings:
Later, I realise that 'five' is important too:
... (solution: end every line with a comma. this is fine in python: lst = [1, 2, 3, ] ) |
|||
|
|
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}:
} |
|||
|
|
(C#) The \x escape. Quick, how different are "\x8Good compiler" and "\x8Bad compiler"? |
|||
|
|
This one made my coworkers laugh, including my boss...
It took me like 5 minutes until I realized what was going on. |
||||||||
|
|
|
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
And scratch my head at the compiler errors. |
|||
|
|
We've all done the other way round; am I the only person who has written
and spent ages wondering why x wasn't changing? |
|||
|
|
The most annoying syntax gotcha in Perl:
|
|||
|
|
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)
|
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
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:
It will produce strange results until you realize that you're actually assigning the value of y to x. |
|||
|
|
|
|
Extra comma in a JavaScript object literal:
The last line may just be commented out or deleted. Firefox/Safari/Opera/Chrome won't complain about the extra comma after the |
|||
|
|
|
|
Python: (A semantics gotcha, not a syntax one, but in the same spirit) The famous "mutable default arguments are initialized once" gotcha.
A better way to handle this is:
|
|||