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. |
||||
|
|
|
Ruby: bill=5 => 5 bi11=bill+5 => 10 bill => 5 I've been bit with that back in the wild days of programming languages, and it is such a horrible bug that it's amazing that any new language won't give you a way around it. Even Visual Basic has Option Explicit, and I've been in interviews where the first question was "What's the first line of every VB file" and if you didn't respond "Option Explicit" they said "Have a nice day". |
|||
|
|
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)
|
|||
|
|
In Java:
|
||||
|
|
|
Old school VB. Doesn't fast-terminate the logic statement when something is false.
|
|||
|
|
Forgetting the second "fetch next" statement in a SQL Server cursor.
|
|||
|
|
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, ] ) |
|||
|
|
The easily forgotten global keyword in Python.
|
|||
|
|
I frequently switch between Java and Flash. I will often start writing my Java functions
and my Flash functions
|
|||
|
|
|
|
In C++, if you forget a semicolon after class declaration in header file, then the many .cpp files in which the .h is included will start reporting compile errors. You may go crazy trying to figure out the cause of those esoteric and strange errors - unless you know where to look - for a recently modified .h file. |
|||
|
|
In Java. Say I have code which uses a List collection which I want to refactor to use a Map. I change all the references, fix all the compile errors, and I'm done, right. Unfortunately, I had this in my code before the refactor:
Now I have:
Thanks to the wonders of auto-boxing, this still compiles, and of course is utterly useless. If you're lucky, your tests will catch it, or you'll catch it visually, but this has kicked me in nuts more than once. |
|||
|
|
|
|
C++ Classic one this is, you go to declare a template or something that uses templates like so:
the >> is interpreted as the shift operator, white space required! Edit: this would give you a syntax error though but annoying! |
||||
|
|
|
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? |
|||
|
|
goran.siska pointed this one out:
I ran into this many years back, but to make matters worse, the compiler I was using did not catch it, and a bunch of indentations and conditions made it so the semicolon was on character position 81, in an 80 character wide IDE... |
|||
|
|
|
|
As much as I love LINQ I can't for the life of me work out why JOIN's are like this:
equals! Why is the equallity comparison done with the keyword equals when every other C# equality comparioson is with == |
|||
|
|
|
|
Test if result of a functioncall is 0, storing into a variable:
Evaluates to:
Which is not what you want... |
|||
|
|
|
|
C++. Notice nasty semicolon after if... Took me some time to find this bug. Solaris compiler gave no warning or anything. I guess I was auto-competition error from SlickEdit. My team does not use it anymore...
|
|||
|
|
|
|
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 |
|||
|
|
|
|
|
|||
|
|
|
|
Loading a Java properties file on a Windows system:
Then cussing because your app is producing no output after several invocations even after mashing the F5 key 72 times, then crying because you've littered your C drive with the explosion of repeat debug cycles. |
|||
|
|
|
|
Here's one of my favorites:
In Java it's the source of the java.util.EmptyStackException And for what it's worth I have a deep suspicion this same easily overlooked problem is at the root of many other complaints and bug reports regarding the exception. Jasper pre-compilation, XSL-fo issues and more can probably be traced to it. I wonder how many man hours have been exhausted trying to understand it. |
|||
|
|
|
|
I often switch between Java, JavaScript, PHP, Lua, VBScript... I find the choice of + the worst one, particularly in Java where it is the only exception to absence of operator overloading... |
|||
|
|
|
|
|
|||
|
|
|
|
Instead of just returning blnReturnValue. I think this was actually mentioned on the Stack Overflow podcast a while back. |
|||
|
|
|
|
|
|||
|
|
Scratch my head when the IDE barfs. |
|||
|
|
|
|
I type fast, so this one is my latest peeve:
Yeah, that's caught me a number of times lately. Usually, it's because I'm not paying attention when Intellisense pops up. Grrr... |
|||
|
|
|
|
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:
|
|||
|
|
In Visual Basic and Visual Basic for Applications, IIf is not a statement, but a function. Which means that something like this:
Still raises a divide by zero error because both the true part and the false part are calculated before the condition is checked and a result is returned. |
|||
|
|