vote up 6 vote down star
7

I'd like to hear some of the more pernicious 'gotchas' that exist out there. Any language, system, or library is fine.

flag
Pretty broad, considering all the languages and systems that have gotchas. – Jamie Sep 28 '08 at 17:59
1  
should be community wiki, really – Johannes Rudolph Dec 6 at 12:35

22 Answers

vote up 28 vote down check

Auto-boxing in Java:

Integer n = 128;
Integer m = 128;
assert n <= m; // True
assert n >= m; // True
assert n == m; // False

Or anything involving Java's BigDecimals.

EDIT: Actually, this PHP gotcha is probably worse.

link|flag
8  
If something like this went on in my language of choice, I'd have to change languages out of sheer embarassment. – MusiGenesis Sep 28 '08 at 18:39
1  
Wow, that's pretty evil. – Will Sep 28 '08 at 19:00
6  
The best bit is that the behaviour is different if you change the value from 128 to 127. – Dan Dyer Sep 28 '08 at 20:38
1  
@Konrad, the JVM specs specify a certain behavior for values under 127. Values above 127 is implementation specific (either unbox or object behavior). See java.sun.com/docs/books/… – James Schek Oct 3 '08 at 14:39
1  
@Kaji: In Java Integer is an object type, but integer literals are of type int (a primitive type). Java 5 introduced automatic conversion between primitives and their object wrapper types. What's happening here is that the two values of 128 are converted into two separate objects with the same value. The == operator, when applied to object types, compares reference equality not values, so they are considered unequal. The <= and >= operators are not defined for reference types, so the values have to be unboxed back to primitives again and are therefore considered equal... – Dan Dyer Dec 6 at 14:30
show 3 more comments
vote up 2 vote down

The doubling up of equality and assignment operators in VB. Most of the time, i'm able to switch back and forth between VB[.NET] and C-like languages without too much friction, but this difference is subtle enough to bite me.

Dim result As Double
Dim auxResult as Double

result = auxResult = input1 * input2 ' D'oh!
link|flag
Whoa! Who writes code like this?! – Konrad Rudolph Oct 3 '08 at 14:35
2  
@Konrad: Me. But not in VB. Anymore. – Shog9 Oct 3 '08 at 18:52
vote up 0 vote down

Perl's $_

The default magic variable. More than once I've been bitten by the ambiguity of what the value contained, or, more importantly, code that was simple before I accommodated a special case thanks to its magic, became much uglier once I unwittingly changed its value.

link|flag
Explain how you found it to be a gotcha? – ysth Sep 28 '08 at 17:53
you can write perfectly functional perl without complex usage of $_. Choose to use $_ only after you know how it behaves. – Jamie Sep 28 '08 at 18:03
It's not so much that the usage is complex, it's that once you do something slightly more complex, the value of $_ changes as a result of the side effects of other things you are doing. It creates ambiguity. In ruby, I can commit some perlisms, but the culture doesn't encourage such cleverness. – JasonTrue Sep 28 '08 at 18:10
The only thing that changes $_ in a non-localized fashion is a while(readline(...)) loop, which is implicitly while($_=readline(...)). Is that the problem? Or even things like a grep or map that alias $_ over a limited scope? – ysth Sep 28 '08 at 18:26
Also, there are places where Perl syntax is ambiguous, but this isn't one of them. I think you mean "confusion" or "doubt", not ambiguity. – ysth Sep 28 '08 at 18:31
show 3 more comments
vote up 7 vote down

The canonical example is assignment within a comparison expression in C. if (alert_code = red) launch_missles (); and all that. When compilers start warning about using features of a language, is a big sign they shouldn't exist.

link|flag
1  
A good habit to get into is to always put the constant (or function call) left in a comparison. Ofcourse that only works when you compare against a constant or call - but you'll find that most of the time you do. – RazMaTaz Dec 29 '08 at 14:00
1  
I wouldn't want to not be able to assign in a condition like that. I think it's worth allowing it but with a compiler warning. – Skilldrick Dec 6 at 12:19
@Skilldrick, "not allowed" and "allowed with a warning" are the same exact thing in my book. Your code should compile with all not-totally-stupid warnings enabled without any warning. – Koper Dec 7 at 1:57
vote up 3 vote down

In .NET the System.Drawing.Bitmap object has a method called "GetHBitmap()" which returns a native GDI HBITMAP object. The code I was maintaining was a dynamic image generator for a web site that would take a product image and dynamically render a "15% off!" medallion or something on the image.

The System.Drawing stuff in .NET 1.1 was half baked, some methods were managed-only, some methods required native HBITMAPs, etc. So he was calling GetHBitmap() and then disposing of the object. Needless to say, this didn't work and the server would crash every few hours. Upon investigation, we found that the GDI Handle Count for the aspnet_wp.exe (ASP.NET worker process) was astronomical (65,000+ versus the normal 500-800).

Upon investigation, the GetHBitmap() function says that you must call the native GDI "DeleteObject()" Win32 API function to release the GDI handle. This function is not available in .NET and you must make a P/Invoke call to call it.

For the non-.NET'ers reading this, it's akin to making a native C call from Java or PHP. Totally non-intuitive.

It took us a few days to track it down. Once the fix was in place, everything worked great! :)

link|flag
2  
Everything about Bitmap is kinda half baked... – Patrick Dec 22 '08 at 6:14
vote up 5 vote down

I strongly recommend reading Java Puzzlers. It's the whole book about gotchas. There is a sample chapter on the webpage.

link|flag
vote up 0 vote down

Backtracking in Prolog.

link|flag
Programming in Prolog – Ryan Sep 28 '08 at 19:05
That's not a gotcha, because you know in advance that it is hard. – finnw Sep 28 '08 at 19:36
vote up 0 vote down

The best ones are in C++, it lends itself to beatifull things like:

if(value=comparisson)
{
  //do something with value and wonder 
  //why is it allways 100% equal to comparison
}

C# spoiled all the fun on that one. A little off topic, pointers give out cool things too, even two days ago I had to write this gorgeous piece of code:

level = (int)(*((double *)(void.Ptr())));

The list like parentises are the result of paranoia after 30 minutes staring wide eyed at a screen when the simpler level = *(int *)void.Ptr(); was not working.

link|flag
vote up 0 vote down

Casting. Especially in weak languages, casting can be one of the biggest gotchas. One of the worst casting situations I ran into (albeit quite rare) was when a string was being cast into a number, but only the first character was being cast into the number. So the string "31" became 3.

link|flag
Can you provide an example? – eyelidlessness Oct 27 '08 at 20:45
An older (and potentially screwey) implementation of JSTL gave the result where the string "31" when compared to a number would cast the 31 to a 3. – Jonathan Arkell Oct 28 '08 at 14:00
vote up 1 vote down

Namespaces in LINQ to XML, mainly because it is my most recent gotcha. Examples of LINQ to XML rarely include a namespace declaration in the sample file, however once you move to a proper live XML file format (like GPX) failing to realise you need to include the namespace in your query leads to much returning of empty results.

link|flag
vote up 1 vote down

In C:

Using math routines such as sin, cos or sqrt and forgetting to include math.h.

On old compilers that will just compile and link without warnings, but not work because C assumes that all parameters are int if no prototype is given. You'll pass an integer to a function expecting a float argument.

link|flag
vote up 6 vote down

In some programming languages (like Java and C#) strings are designed as immutable classes, which means that certain methods don't change the original object but instead return a modified object copy. When starting with Java I used to forget this all the time and wondered why the replace method didn't seem to work on my string object.

String text = "foobar";
text.replace("foo", "super");
System.out.print(text); // still prints "foobar" instead of "superbar"
link|flag
Agreed text = text.replace("foo", "super"); seems somehow redundant. – Meff Sep 28 '08 at 18:24
3  
self-modifying methods are really annoying. I guess what matters is how consistent it is with the rest of the API - if all the other string methods return new copies, then this is all good – Orion Edwards Sep 28 '08 at 19:35
vote up 1 vote down

Perl's glob() iterator. In scalar context, it will return successive results, followed by an undef, even if the argument changes.

$ touch quux
$ touch quuux
$ perl -w
sub globme {
    my $pattern = shift;
    my $result = glob($pattern);
    return $result;
}

print 'got: ', globme('qu*x'), "\n";
print 'got: ', globme('foo'), "\n";
__END__
got: quuux
got: quux

The 'foo' is disregarded because that call to glob() hasn't exhausted its results yet. To correctly use glob() it should always be in list context, even if you only want one result:

my ($result) = glob($pattern);

or care should be taken to make certain that the iterator is called until it returns undef before a fresh iteration is desired.

link|flag
vote up 0 vote down

In Ruby code like:

2 + "4"
"hello no. " + 1

Give type run-time errors. It's easy to fix, but I regularly get these errors when trying to print out debug strings. Sure, it's logical; just not very intuitive in a dynamically typed language. You could always redefine the meaning of +, but that's another story.

link|flag
Use interpolation. "hello no. #{1}" is nicer than using + – Orion Edwards Sep 28 '08 at 19:37
I do sometimes. I wonder if it's really nicer, though. I guess I'm used to other languages that convert numbers to strings and use a concatenation operator. – Firas Sep 28 '08 at 19:52
vote up 4 vote down

This isn't a big one for me anymore, but it bit me when I came across it and I see it hit a lot of people, so it stands out to me. Python allows nested functions and closures, as well as functions as objects. A common idiom to attempt is something like the following:

functions = []
for i in xrange(10):
    def f():
        return i
    functions.append(f)
for f in functions:
    print f()

The expectation is that one can create a series of functions, using the outer variables, and later call them in an expected way. However, anyone understanding closures will quickly notice the value of i will be 9 for every single call to the ten individual functions created. The name is looked up in the function's closure when it gets called, and they are all called after the loop, when i still has its last value, which is 9.

The solution to rebinding the variable as a local inside the nested function:

functions = []
for i in xrange(10):
    def f(i=i):
        return i
    functions.append(f)
for f in functions:
    print f()

In the new code, the function is defined with a single parameter, i, which is given a default value computed at definition time, so it has the correct value of i.

link|flag
vote up 5 vote down

I once went back and forth between two systems on an hour-to-hour basis. One had an editor where Ctrl-X meant save and exit; on the other, it meant Exit without saving.

Bill Drissel

link|flag
3  
Something very similar: "vi -o file1 file2". On systems where 'vi' is actually vim, it edits 2 files in a split screen. But if 'vi' is a link to 'elvis', it edits file2, uses file1 as a log file, and overwrites it with no warning or backup. – finnw Sep 28 '08 at 19:41
@finnw: Thanks, I've had coworkers ask me why I religiously type "vim" instead of "vi". This is going on my list of reasons. :) – Nicholas Knight Dec 6 at 20:41
vote up 23 vote down

Default arguments in Python:

def f(x, a = []):
    if len(a) == 0:
        a.append(x)
    print a

>>> f(1)
[1]
>>> f(2, [5])
[5]
>>> f(3)
[1] # you expected [3], right?

By appending to the argument a when it is not specified, this actually changes the default argument value for subsequent calls! One way to fix this is:

def f(x, a = None):
    if a is None:
        a = [x]
    print a
link|flag
4  
WTF? That would drive me batshit. – eyelidlessness Oct 27 '08 at 20:44
I got burned by that one as well. Python's 'def foo(a=[])' !== PHP's 'function foo($a=array())'! – too much php Nov 11 '08 at 23:39
1  
This doesn't change the default argument, as the the instances of the default values are created when the function is defined. If the default value is a mutable type (such as a list, set, or dictionary), the items stored in that default value instance changes because it is the same instance. – Adam K. Johnson Dec 21 '08 at 21:27
2  
Actually, this is quite a nice behaviour, if you were used to it. But for anyone coming from another language, this is just annoying, like too much php pointed out. – Boldewyn Jul 8 at 8:30
vote up 3 vote down

I worked on a Data General mini-computer that had a couple of quirks in the Fortran compilier. When we first got it, I wrote a sample program about 10 lines long. We could not get it to compile and run properly, which was aggravating because we didn't have a hard disk and each compile/run cycle took about 15 minutes of reading and punching paper tape. I eventually realized that my little program defined a function named "mpy", but the compiler had an internal function of the same name used for multiplication. (In other words, it should have been a reserved word.)

On the same computer/compiler, if a subtraction resulted in zero, it would be a negative zero which would not test equal to a positive zero. IIRC, if you set a floating point number to 6 and printed it out, it was equal to something like 5.99994.

link|flag
1  
Upmodded for a gotcha involving ones-complement. – Nick Retallack Jun 3 at 6:09
vote up 7 vote down

Pretty silly...

someheader.h 

START_OF_FILE 
7/*********************************************************************************************************************************************************************************** 
LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,
LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,
LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,
LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,
LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,
LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,LOTS OF DOCUMENTATION ,
LOTS OF DOCUMENTATION , 
*/ 

// code...
END_OF_FILE

in a C program composed of MANY files... got 2 days to find where it was, that damned "7" ( syntax check couldn't determine row/file error )

link|flag
1  
This is funny because as soon as I find it I'd be going "what kind of meth addict made that typo?" – eyelidlessness Oct 27 '08 at 20:50
A similar thing happened to me in PHP once. My file started with "<?phpw" instead of "<?php" and PHP just didn't want to interpret it (without any error message). Unfortunately, my IDE also didn't point out my mistake which took me hours to find. – codethief Dec 11 '08 at 19:45
vote up 0 vote down

C

Maybe not the worst gotcha I've seen but recently I came across a colleague trying to set a double to an undefined value. He had read about the 0xFFFA5A5A memory pattern which also can act as a NaN for floats on SGI. How did he use it?

double dvalue = (double)0xFFFA5A5A;

Did he test it? No.

It took me a while to explain all the problems with this line.

link|flag
vote up 0 vote down

Visual C++ 6 getline bug ><

string input;
 getline(STD::in,input,'\n');

needs pressing enter twice to work. very annoying, and shouldn't happen in a commercial product.

Objc :

if(string==string2)

doesn't works, it needs

if([string isEqual:string2])
link|flag
vote up 1 vote down

I posted an answer about Java already, but I think this is a better (worse?) gotcha.

PHP

Specifically, the way it handles numeric literals and strings containing numeric representations. The following is copied from my blog posting about it.

"01a4" != "001a4"

We start with something simple and non-controversial. If you have two strings that contain a different number of characters, they can’t be considered equal. The leading zeros are important because these are strings not numbers.

"01e4" == "001e4"

However, PHP doesn’t like strings. It’s looking for any excuse it can find to treat your values as numbers. And here we have it. Change the hexadecimal characters in those strings slightly and suddenly PHP decides that these aren’t strings any more, they are numbers in scientific notation (PHP doesn’t care that you used quotes) and they are equivalent because leading zeros are ignored for numbers. To reinforce this point you will find that PHP also evaluates "01e4" == "10000" as true because these are numbers with equivalent values. This is documented behaviour, it’s just not very sensible.

Enter ===

At this point the PHP apologists chime in with the suggestion to use the === operator. This is an equality operator that compares not only the values of the arguments but their types as well. Both sides must have the same type as well as identical values. This doesn’t seem like it should make any difference as the literals on both side of the comparison already have identical types, regardless of whether that type is string or integer. Of course that’s not the case and when you use the extra equals sign the values remain as strings rather than being interpreted as integers. "01e4" === "001e4" evaluates to false (correct, but not entirely convincing).

"0x001a4" == 0x01a4

So it seems that the rule in PHP is that if the contents of a string can be parsed as a numeric literal then, for comparisons, they are, as we see with the above hexadecimals (note the difference in notation from the first example, i.e. the use of the 0x prefix). Leading zeros are ignored when numbers are involved.

"0012" != 0012

Unfortunately that’s not the full story as the final example shows. Like many other languages, PHP interprets numbers beginning with a zero as octal values, but not when that number is within a string. This is completely inconsistent with the way it processes hexadecimal values and scientific notation within strings.

link|flag

Your Answer

Get an OpenID
or

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