What is, in your opinion, the most surprising, weird, strange or really "WTF" language feature you have encountered?
Please only one feature per answer.
|
up vote
623
down vote
favorite
499
|
What is, in your opinion, the most surprising, weird, strange or really "WTF" language feature you have encountered? Please only one feature per answer. |
|||
|
|
|
up vote
967
down vote
|
In C, arrays can be indexed like so:
which is very common. However, the lesser known form (which really does work!) is:
which means the same as the above. |
||||||||||||||||||||
|
|
up vote
662
down vote
|
In javascript
whereas
|
||||||||||||||||||||
|
|
up vote
456
down vote
|
In Javascript, the following construct
Even worse, this one works as well (in Chrome, at least):
Here's a variant of the same issue that does not yield a syntax error, just silently fails:
|
||||||||||||||||||||
|
|
up vote
385
down vote
|
JavaScript truth table:
|
||||||||||||||||||||
|
|
up vote
376
down vote
|
Trigraphs in C and C++.
This will print |
||||||||||||||||||||
|
|
up vote
297
down vote
|
Fun with auto boxing and the integer cache in Java.
Explanation A quick peek at the java source code will turn up the following:
Note: IntegerCache.high defaults to 127 unless set by a property. What happens with auto boxing is that both foo and bar the same integer object retrieved from the cache unless explicitly created: e.g. foo = new Integer(42), thus when comparing reference equality, they will be true rather than false. The proper way of comparing Integer value is using .equals; |
||||||||||||||||||||
|
|
up vote
190
down vote
|
Quoting Neil Fraser (look at the end of that page),
(in java, but behaviour is apparently the same in javascript and python). The result is left as an exercise to the reader. EDITED: As long as we are on the subject consider also this:
|
||||||||||||||||||||
|
|
up vote
166
down vote
|
PHP's handling of numeric values in strings. See this previous answer to a different question for full details but, in short: "01a4" != "001a4"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"PHP doesn’t like strings. It’s looking for any excuse it can find to treat your values as numbers. 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. |
||||||||||||||||||||
|
|
up vote
164
down vote
|
APL (other than ALL of it), the ability to write any program in just one line. e.g. Conway's Game of Life in one line in APL:
If that line isn't WTF, then nothing is! And here is a video |
||||||||||||||||||||
|
|
up vote
149
down vote
|
Perl's many special variables $. $_ $_# $$ $[ @_ They're definitely shorter than the equivalent, but if you subscribe the school of thought that you write code for humans rather than trying to impress the computer then it makes reading the code for a non-Perl veteran a lot harder. Read the complete list here |
||||||||||||||||||||
|
|
up vote
123
down vote
|
Algol pass by name (illustrated using C syntax):
|
||||||||||||||||||||
|
|
up vote
112
down vote
|
The JavaScript octal conversion 'feature' is a good one to know about:
More details here. |
||||||||||||||||||||
|
|
up vote
106
down vote
|
Not really a language feature, but an implementation flaw: Some early Fortran compilers implemented constants by using a constant pool. All parameters were passed by reference. If you called a function, e.g.
The compiler would pass the address of the constant 1 in the constant pool to the function. If you assigned a value to the parameter in the function, you would change the value (in this case the value of 1) globally in the program. Caused some head scratching. |
||||||||||||||||||||
|
|
up vote
106
down vote
|
In Java:
Can be written as:
|
||||||||||||||||||||
|
|
up vote
105
down vote
|
In Python:
Not a WTF, but a useful feature. |
||||||||||||||||||||
|
|
up vote
103
down vote
|
Let's have a vote for all languages (such as PL/I) that tried to do away with reserved words. Where else could you legally write such amusing expressions as:
( or
( |
||||||||||||||||
|
|
up vote
101
down vote
|
INTERCAL is probably the best compendium of strangest language features. My personal favourite is the COMEFROM statement which is (almost) the opposite of GOTO.
|
||||||||||||||||||||
|
|
up vote
92
down vote
|
Don't know if it can be considered a language feature, but, in C++ almost any compiler error related to templates delivers a fair amount of WTF to many C++ programmers around the world on daily basis :) |
||||||||||||||||||||
|
|
up vote
91
down vote
|
In C one can interlace a do/while with a switch statement. Here an example of a memcpy using this method:
|
||||||||||||||||||||
|
|
up vote
87
down vote
|
For those who don't know,
Now for the "WTF feature". This is from
|
||||||||||||
|
|
up vote
85
down vote
|
I'm surprised that no one has mentioned Visual Basic's 7 loop constructs.
Because sticking an ! in front of your conditional is way too complicated! |
||||||||||||||||||||
|
|
up vote
82
down vote
|
I always wondered why the simplest program was:
Whereas it could be:
Maybe this is to frighten computer science students in the first place ... |
||||||||||||||||||||
|
|
up vote
80
down vote
|
The many name spaces of C:
Or with characters:
|
||||||||
|
|
up vote
77
down vote
|
I struggled a bit about this:
In perl, modules need to return something true. |
||||||||||||||||||||
|
|
up vote
72
down vote
|
I would say the whole whitespace thing of Python is my greatest WTF feature. True, you more-or-less get used to it after a while and modern editors make it easy to deal with, but even after mostly full time python development for the past year I'm still convinced it was a Bad Idea. I've read all the reasoning behind it but honestly, it gets in the way of my productivity. Not by much, but it's still a burr under the saddle. edit: judging by the comments, some people seem to think I don't like being forced to indent my code. That is an incorrect assessment. I've always indented my code no matter what the language and whether I'm forced to or not. What I don't like is that it is the indentation that defines what block a line of code is in. I prefer explicit delimiters for that. Among other reasons, I find explicit delimiters makes it easier to cut and paste code. For example, if I have a block indented 4 spaces and paste it at the end of a block that is indented 8 spaces, my editor (all editors?) have no idea if the pasted code belongs to the 8-space block or the outer block. OTOH, if I have explicit delimiters it's obvious which block the code belongs to and how it should be (re-)indented -- it does so by intelligently looking for block delimiters. |
||||||||||||||||||||
|
|
up vote
68
down vote
|
My biggest most hated feature is any configuration file syntax which includes conditional logic. This sort of thing is rife in the Java world (Ant, Maven etc. you know who you are!). You just end up programming in a c**p language, with limited debugging and limited editor support. If you need logic in your configuration the "Pythonic" approach of coding the config in a real language is much much better. |
||||||||||||||||||||
|
|
up vote
66
down vote
|
Perl has lots of strange quirky features, loved by some, hated by others. There are a few I find particularly WTF-ish:
|
||||||||||||||||||||
|
|
up vote
65
down vote
|
In JavaScript:
Luckily the kind folks at stackoverflow.com explained the whole thing to me: http://stackoverflow.com/questions/1724255/why-does-2-2-in-javascript |
||||||||||||
|
|
up vote
63
down vote
|
In C
It compiles, but it rarely does what you think it ought to do. An optimization change leads to producing wildly different results. And it runs differently on different platforms. Yet, the compiler's perfectly happy with it. |
||||||||||||||||||||
|
|
up vote
57
down vote
|
The weird things c++ templates can be used for, best demonstrated by "Multi-Dimensional Analog Literals" which uses templates to compute the area of "drawn" shapes. The following code is valid c++ for a 3x3 rectangle
Or, another example with a 3d cube:
|
||||||||
|