I'd like to hear some of the more pernicious 'gotchas' that exist out there. Any language, system, or library is fine.
|
4
|
|||
|
|
|
Auto-boxing in Java:
|
||||||||||||
|
|
|
Default arguments in Python:
By appending to the argument
|
||||||||||||||
|
|
|
The canonical example is assignment within a comparison expression in C. |
||
|
|
|
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.
|
||||||
|
|
|
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 |
||||
|
|
|
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:
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:
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. |
||
|
|
|
|
I strongly recommend reading Java Puzzlers. It's the whole book about gotchas. There is a sample chapter on the webpage. |
|||
|
|
|
|
Pretty silly... someheader.h START_OF_FILE // 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 ) |
||||||
|
|
|
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.
|
||||
|
|
|
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! :) |
||||
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Perl's glob() iterator. In scalar context, it will return successive results, followed by an undef, even if the argument changes.
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:
or care should be taken to make certain that the iterator is called until it returns undef before a fresh iteration is desired. |
|||
|
|
|
|
Backtracking in Prolog. |
||
|
|
The best ones are in C++, it lends itself to beatifull things like:
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:
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. |
||
|
|
|
|
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. |
||||
|
|
|
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. |
||||||||||
|
|
|
In Ruby code like:
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. |
||||
|
