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 Java you might expect
to be equal to
But it is not. In fact you get a compiler error, as the result of the addition is of type int and therefore not assignable to the byte variable b. When using the compound operator
becomes
|
||||
|
|
|
Why does C#'s List<T>.AddRange() not let me Add elements of a subtype of T? List<T>.Add() does!
|
|||||||||||||||||
|
|
In C#, this should at least generate a compiler warning, but it doesn't:
When called, it causes your app to crash, and you don't get a good stack trace, since it's a StackOverflowException. |
|||||||||||||
|
|
Variable/function declarations in Javascript:
weird() returns undefined... x is 'taken' even though the assignment never happened. Similarly, but not so unexpectedly
returns 2. |
||||
|
|
|
VBScript's date/time literals (why is this still so rare?):
Edit: Date literals are relative (are they technically literals, then?):
VB.NET, since it is compiled, does not support relative date literals. Date only or time only literals are supported, but the missing time or date are assumed to be zero. Edit[2]: Of course, there are some bizarre corner cases that come up with relative dates...
|
|||||||||
|
|
I've written a programming language for a client (used for experimentally driving custom hardware) with some custom types (Curl, Circuit, ...) that each have only 2 values. They are implicitly convertible to boolean, but (at the request of the client) the exact boolean value of a constant of such a type can be changed at runtime. E.g.: The type Curl has 2 possible values: CW and CCW (clockwise and counterclockwise). At runtime, you could change the boolean value by a simple assignment statement:
So you could change the boolean meaning of all values of those types. |
||||
|
|
|
ActionScript 3: When an object is used by its interface, the compiler doesn't recognize the methods inherited from
gives a compilation error. The workaround is casting to Object
PHP:
Java (and any implementation of IEEE754):
Outputs |
|||||||||||||||||||||
|
|
When I was in college, I did a little bit of work in a language called SNOBOL. The entire language, while cool, is one big WTF. It has the weirdest syntax I've ever seen. Instead of GoTo, you use :(label). And who needs if's when you have :S(label) (goto label on success/true) and :F(label) (goto label on failure/false) and you use those functions on the line checking some condition or reading a file. So the statement:
will read the next line from a file or the console and will go to the label "end" if the read fails (because EOF is reached or any other reason). Then there is the $ sign operator. That will use the value in a variable as a variable name. So:
will put the value 'BARK' on teh console. And because that isn't weird enough:
will create variable named BARK (see the value assigned to DOG above) and give it a value of 'SOUND'. The more you look at it, the worse it gets. The best statement I ever found about SNOBOL (from link text) is "the power of the language and its rather idiomatic control flow features make SNOBOL4 code almost impossible to read and understand after writing it. " |
|||||||||||||||||||||
|
|
In Haskell:
yields 5. |
|||||||||
|
|
Perl is full of odd but neat features.
The same is true for
|
|||||||||
|
|
In PHP "true", "false" and "null" are constants which normally cannot be overridden. However, with the introduction of namespaces in PHP >=5.3, one can now redefine these constants within any namespace but the global namespace. Which can lead to the following behaviour :
Of course if you want your trues to be true, you can always import true from the global namespace
|
||||
|
|
|
LOLCODE! The whole language itself. While not exactly a WTF thing, I've never come across a language which plays out in my head in a squeeky cartoony voice. Nor have I ever looked at code before and want to exclaim "aaaawwww cuuute!" This program displays the numbers 1–10 and terminates
|
||||
|
|
|
In PHP:
PHP has some of the most annoying type coercion... |
||||
|
|
|
In C or C++ you can have a lot of fun with Macros. Such as
if FOO(bar++,4) is passed in it'll increment a twice. |
|||||||||||||||||||||
|
|
Perl filehandle-style operator calls. In the beginning, there was
Notice the ostentatious lack of a comma so that you know that's a filehandle to print-to, not a filehandle to print in a stringified manner. It's a dirty hack. Language upgrade rolls around, they make proper OO filehandles and turn
Mostly you notice this when you miss a comma, or try to run something like |
|||||||||
|
|
In Python:
These slice assignments also give the same results:
|
||||
|
|
|
Easy pickins, Erlang is full of them. For example, 3 forms of punctuation,
|
||||
|
|
|
More of a platform feature than a language feature: on the iPhone, create an infinite loop with a few computations inside and run your program. Your phone will heat up and you can use it as a hand-warmer when it's cold outside. |
|||||||||
|
|
C/C++: The Fast Inverse Square Root algorithm takes advantage of the IEEE floating-point representation (code copied from Wikipedia):
|
|||||||||||||
|
Bracket identifiers in VBScriptVBScript has so-called bracket identifiers, which are identifiers defined enclosed in square backets, like this:
They're quite handy, actually, as they allow you to name variables and routines after reserved words, call methods of third-party objects whose names are reserved words and also use almost any Unicode characters (including whitespace and special characters) in identifiers. But this also means that you can have some fun with them:
On the other hand, bracket identifiers can be a gotcha in case you forget the quotes in a statement like this:
because
|
|||||
|
|
In C or C++, parentheses are optional for the argument to
I've never understood why this is! |
|||||
|
|
In JavaScript (and Java I think) you can escape funny characters like this:
If you want to put a carriage return into a string though, that's not possible. You have to use \n like so:
That's all normal and expected- for a programming language anyway. The weird part is that you can also escape an actual carriage return like this:
|
|||||||||
|
|
In earlier version of Visual Basic, functions without a "Return" statement just "Return None", without any kind of compiler warning (or error). This lead to the most crazy debugging sessions back when I had to deal with this language on a daily basis. |
|||||
|
|
String math in Perl is pretty weird.
|
|||||||||
|
|
In PowerShell, you can rename variables:
Indirect indirection! Take that, PHP! Literals work, too:
|
||||
|
|
|
in PHP the strings letters cannot be used like in C, you need to use Although, there is one exception:
will print letters a to y. just like you would expect as if it was C style datatypes. however if the test condition is changed to also if you change the 'z' to 'aa' which came out next after 'z' in the 676 items list, and change test condition to And if you change the incrementor to Nevertheless, this is a nice way in PHP to output combinations of letters a-z, although its very hard to actually use it. |
|||||
|
|
The bigest collection (today 1313) of decent and weird programming languages I know, you will find here: http://99-bottles-of-beer.net/ be prepared to see real weird stuff ;-) Everybody should make his one choice |
|||||
|
|
Early FORTRAN where whitespace was not significant. (The anti-Python!)
Meaning: loop from here to line 20 varying I from 1 to 10.
Meaning: Assign 1.10 to the variable named DO20I. Rumors are that this bug crashed a space probe. |
||||
|
|
|
Ruby
|
||||
|
|
|
Java's access modifiers are a recent WTF to me (as I had to learn a bit of it). Apparently packages are more intimate than class hierarchies. I can't define methods and attributes that are visible to sub-classes but not to other classes in the package. And why would I want to share the insides of a class to other classes? But I can define attributes and methods that are visible to every class inside the package, but not to subclasses outside the package. No matter how hard I think about this, I still can't see the logic. Switch over the access modifiers and make protected act like it works in C++ and keep the package private modifier as it is and it would make sense. Now it doesn't. |
|||||||||
|