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