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
10  
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

vote up 0 vote down

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".

link|flag
show 5 more comments
vote up 7 vote down

The most annoying syntax gotcha in Perl:

my $value=something() if ($condition);
link|flag
show 6 more comments
vote up 6 vote down

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)

  1. Calling function Foo, and passing in the argurment Bar
  2. Accessing the element at position Bar, from the array Foo.
  3. Calling function Foo, which returns an array, and accessing the element at position Bar
link|flag
show 2 more comments
vote up 14 vote down

In Java:

if (someString == "Y"){
  ... never executes this code, even when someString.equals("Y") ...
}
link|flag
3  
The fact that this sometimes works makes it worse. – mccoyn Jan 30 at 19:06
show 3 more comments
vote up 2 vote down

Old school VB. Doesn't fast-terminate the logic statement when something is false.

Function testString(s As String)
    MsgBox "Should not be called"
End Function

Dim s As String
If Len(s) > 2 And test(s) Then
    MsgBox "Starts With A"
End If
link|flag
show 2 more comments
vote up 0 vote down

Forgetting the second "fetch next" statement in a SQL Server cursor.

fetch next from cursor1 into @var1, @var2
while @@fetch_status = 0
begin
    --Do something here
    --always seem to forget this next line
    fetch next from cursor1 into @var1, @var2
end
link|flag
show 1 more comment
vote up 2 vote down

Java:

String s = "a1";
s.replaceAll("a","b");
//expect s to become "b1"
link|flag
vote up 13 vote down

Python: I've got some list of strings:

important_strings = [ 'one',
                      'two',
                      'three',
                      'four'
                    ]

Later, I realise that 'five' is important too:

important_strings = [ 'one',
                      'two',
                      'three',
                      'four'
                      'five'
                    ]

...

(solution: end every line with a comma. this is fine in python: lst = [1, 2, 3, ] )

link|flag
1  
also relevant when writing enumerations in C and C++ where the same problem (and solution) applies :) – workmad3 Oct 3 '08 at 6:31
1  
It's the same with Perl too. – Rob K Jan 30 at 17:43
1  
Lua also allows a comma after the last entry. – Boojum Jan 30 at 19:24
show 3 more comments
vote up 3 vote down

The easily forgotten global keyword in Python.

counter = 0
def increment():
    counter += 1
link|flag
show 2 more comments
vote up 0 vote down

I frequently switch between Java and Flash.

I will often start writing my Java functions

private function foo():int {

}

and my Flash functions

private int foo() {

}
link|flag
vote up 1 vote down

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.

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

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:

List myList....
int i....
myList.get(i)

Now I have:

Map myMap....
int i....
myMap.get(i)

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.

link|flag
vote up 2 vote down

C++

Classic one this is, you go to declare a template or something that uses templates like so:

list<vector<string>> squirrels; // FAIL!

the >> is interpreted as the shift operator, white space required!

Edit: this would give you a syntax error though but annoying!

link|flag
1  
C++0x officially fixes this little wart. Nice injection of "compiler" into a common slang phrase BTW :) – j_random_hacker Jan 11 at 12:37
show 2 more comments
vote up 8 vote down

We've all done the other way round; am I the only person who has written

x == 1;

and spent ages wondering why x wasn't changing?

link|flag
show 3 more comments
vote up 1 vote down

goran.siska pointed this one out:

int i = 0;

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

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...

link|flag
vote up 0 vote down

As much as I love LINQ I can't for the life of me work out why JOIN's are like this:

var results = from item in source
              join otherItem in otherSource on item.Id equals otherItem.ItemId
              where item.Property == someVal
              select item;

equals! Why is the equallity comparison done with the keyword equals when every other C# equality comparioson is with ==

link|flag
vote up 1 vote down

Test if result of a functioncall is 0, storing into a variable:

if (avar=func() == 0) { }

Evaluates to:

if (avar = (func() == 0)) {}

Which is not what you want...

link|flag
vote up 0 vote down

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...

if(foo == bar);
{
    doSth();
}
link|flag
vote up 4 vote down

Extra comma in a JavaScript object literal:

var options = {
    title: "Foo",
    readOnly: true,
    width: 300,
    //color: "#333"
};

The last line may just be commented out or deleted. Firefox/Safari/Opera/Chrome won't complain about the extra comma after the width property. IE6 will stall in its tracks and won't even process any of your code. You'll have lots of fun looking for that single extra comma (JSLint helps).

link|flag
vote up 7 vote down
#define DEBUG 1;
link|flag
vote up 1 vote down

Loading a Java properties file on a Windows system:

pathToOutput=C:\Documents And Settings\Clifton\MyJavaOutput\

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.

link|flag
vote up 0 vote down

Here's one of my favorites:

<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:template name="MyTemplate">
   <xsl:template>
</xsl:stylesheet>

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.

link|flag
vote up 0 vote down

I often switch between Java, JavaScript, PHP, Lua, VBScript...
When concatenating strings, I am sometime confused whether I should use . .. + or &

I find the choice of + the worst one, particularly in Java where it is the only exception to absence of operator overloading...

link|flag
vote up 5 vote down
DELETE FROM customers;
// without where
link|flag
vote up -1 vote down
function bool funcName()
{
    bool blnReturnValue;

    //processing to determine the value of blnReturnValue

    if (blnReturnValue == true)
        return true;
    else
        return false;
}

Instead of just returning blnReturnValue. I think this was actually mentioned on the Stack Overflow podcast a while back.

link|flag
vote up 14 vote down
  1. Octal numbers in C (and some other languages).

    if(42 != 042)
        printf("WTF?!");
    
  2. The constructor+field initialization syntax in C# 3.0 is very convenient, but I keep making the same mistake.

    Correct:

    var d = new DeepThought()
    {
        Answer = "42",          //note a comma
        YearsToWait = 15000000  //you may put a comma here as well (but aren't required to)
    }; //this is actually an end of statement, so the semicolon is mandatory
    

    My wrong version:

    var d = new DeepThought()
    {                           //hey, this looks like a code block!
        Answer = "42";          //all my life I've been using semicolons as separators.
        YearsToWait = 15000000; //I'm not going to change my habits, you stupid compiler!
    } //why do I need to put a semicolon after a curly?
    

    Yes, I understand why the correct version is correct and mine is erroneous, but my reflexes trick me every time.

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

<script runat="server">
Response.Write("<script>")
Response.Write("...")
Response.Write("</script>")
</script>

Scratch my head when the IDE barfs.

link|flag
vote up 0 vote down

I type fast, so this one is my latest peeve:

public class Foo {

  public Foo(int bar)
  {
     this.Bar = Bar;
   }

   public int Bar { get; private set; }

}

Yeah, that's caught me a number of times lately. Usually, it's because I'm not paying attention when Intellisense pops up. Grrr...

link|flag
vote up 4 vote down

Python:

(A semantics gotcha, not a syntax one, but in the same spirit)

The famous "mutable default arguments are initialized once" gotcha.

def f1(arg=list()):
    arg.append(1)
    return arg

for ii in "surprising":
    print f1()

[1]
[1, 1]
[1, 1, 1]
[1, 1, 1, 1]
[1, 1, 1, 1, 1]
[1, 1, 1, 1, 1, 1]
[1, 1, 1, 1, 1, 1, 1]
[1, 1, 1, 1, 1, 1, 1, 1]
[1, 1, 1, 1, 1, 1, 1, 1, 1]
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1]

A better way to handle this is:

def f2(arg=None):
    if arg is None:  arg=list()
    arg.append(1)
    return arg


for ii in "better":
    print f2()

[1]
[1]
[1]
[1]
[1]
[1]
link|flag
show 1 more comment
vote up 3 vote down

In Visual Basic and Visual Basic for Applications, IIf is not a statement, but a function. Which means that something like this:

values = IIf(divisor = 0, 0, numerator / divisor)

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.