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! |
||||||||||||||||
|
|
|
|
||||
|
|
|
|
|||
|
|
Should be obvious from my name. Forgotten Semicolon. |
|||
|
|
|
||||||||
|
|
|
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. |
|||
|
|
|
||||
|
|
|
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. |
||||||||
|
|
|
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... |
|||
|
|
|
|
Prior to Eclipse:
|
|||
|
|
|
|
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:
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. |
|||
|
|
|
|
Forgetting to declare an interface or a class as public has sent me for a loop more than once. |
|||
|
|
Oh! And when using Rhino Mocks to mock a class, forgetting to make a method virtual |
|||
|
|
|
|
In C++
|
|||
|
|
|
|
Querying for results and then trying to eliminate unwanted records...
|
||||
|
|
|
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:
|
||||||||||||||||
|
|
|
(C#) Scoping within switch, which makes this illegal:
If you add appropriate braces, it works of course. |
||||||||||||
|
|
|
This is just a failing of the language :( |
|||
|
|
(Java) Being able to refer to static members through expressions:
Fortunately Eclipse warns about this. |
|||
|
|
The trailing semi-colon on a conditional in C/C++
I've spent hours not finding that... |
|||
|
|
|
|
In c# creating a new class in a new file and not explicitly declaring it public. |
|||
|
|
|
|
Forgetting a MoveNext in a classic ASP recordset loop
|
||||
|
|
|
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 |
|||
|
|
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}:
} |
|||
|
|
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#) The \x escape. Quick, how different are "\x8Good compiler" and "\x8Bad compiler"? |
|||
|
|
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. |
|||
|
|
|
|
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... |
|||
|
|
This one made my coworkers laugh, including my boss...
It took me like 5 minutes until I realized what was going on. |
||||||||
|
|
|
I go from classic ASP to C# all day
|
|||
|
|