What is, in your opinion, the most surprising, weird, strange or really "WTF" language feature you have encountered?
Please only one feature per answer.
|
What is, in your opinion, the most surprising, weird, strange or really "WTF" language feature you have encountered? Please only one feature per answer. |
|||||
|
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
|
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. |
|||||||||||||||||||||
|
|
In JavaScript:
Whereas
|
|||||||||||||||||||||
|
|
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:
|
|||||||||||||||||||||
|
|
JavaScript truth table:
|
|||||||||||||||||||||
|
|
Trigraphs in C and C++.
This will print |
|||||||||||||||||||||
|
|
Fun with auto boxing and the integer cache in Java:
ExplanationA quick peek at the Java source code will turn up the following:
Note: What happens with auto boxing is that both foo and bar the same integer object retrieved from the cache unless explicitly created: e.g. |
|||||||||||||||||||||
|
|
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:
|
|||||||||||||||||||||
|
|
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 |
|||||||||||||||||||||
|
|
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:
|
|||||||||||||||||||||
|
|
Perl’s many built-in variables:
There’s a lot more where those came from. Read the complete list here. |
|||||||||||||||||||||
|
|
PHP's handling of numeric values in strings. See this previous answer to a different question for full details but, in short:
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.
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 |
|||||||||||||||||||||
|
|
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
( |
|||||||||||||||||||||
|
|
The JavaScript octal conversion 'feature' is a good one to know about:
More details here. |
|||||||||||||||||||||
|
|
In C one can interlace a do/while with a switch statement. Here an example of a memcpy using this method:
|
|||||||||||||||||||||
|
|
Algol pass by name (illustrated using C syntax):
|
|||||||||||||||||||||
|
|
In Python:
Not a WTF, but a useful feature. |
|||||||||||||||||||||
|
|
In Java:
Can be written as:
|
|||||||||||||||||||||
|
|
INTERCAL is probably the best compendium of strangest language features. My personal favourite is the COMEFROM statement which is (almost) the opposite of GOTO.
|
|||||||||||||||||||||
|
|
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. |
|||||||||||||||||||||
|
|
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 :) |
|||||||||||||||||||||
|
|
The many name spaces of C:
Or with characters:
|
|||||||||||||
|
|
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 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. edit 2: some people who provide comments seem to think this is a feature I hate or that I think makes python a poor language. Again, not true. While I don't like it all that much, that's beside the point. The question is about the strangest language feature, and I think this is strange, by virtue of it being something very, very few (but >0) languages use. |
|||||||||||||||||||||
|
|
I struggled a bit about this:
In perl, modules need to return something true. |
|||||||||||||||||||||
|
|
For those who don't know,
Now for the "WTF feature". This is from
|
|||||||||||||||||||||
|
|
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! |
|||||||||||||||||||||
|
|
I always wondered why the simplest program was:
Whereas it could be:
Maybe this is to frighten computer science students in the first place ... |
|||||||||||||||||||||
|
|
JavaScript is object oriented, right? So running methods on literal strings and numbers should work. Like
The reason is that the literal |
|||||||||||||||||||||
|
|
In JavaScript:
Luckily the kind folks at stackoverflow.com explained the whole thing to me: Why does 2 == [2] in JavaScript? |
|||||||||||||||||
|
|
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 configuration in a real language is much much better. |
|||||||||||||||||||||
|
|
powerbasic (www.powerbasic.com) includes the compiler directive:
this increases the size of the compiled executable by |
|||||||||||||||||||||
|