What is, in your opinion, the most surprising, weird, strange or really "WTF" language feature you have encountered?
Please only one feature per answer.
|
422
|
What is, in your opinion, the most surprising, weird, strange or really "WTF" language feature you have encountered? Please only one feature per answer. |
|||
|
|
|
|
As an NHibernate enthusiast, I was thrilled when I heard about
it literally changes the a object into b, which makes it trivial to write lazy-initialized proxies because all references to a will now reference b. Pretty neat! I think it qualifies as a strange language feature in that no other language has this ability to my knowledge. |
||||||||||||
|
|
|
Why does C#'s List<T>.AddRange() not let me Add elements of a subtype of T? List<T>.Add() does!
|
||||||||||||
|
|
|
In FoxPro, if I remember correctly, every command can be abbreviated to 4 characters and everything else is ignored, so READ, READY, READINESS is all the same - whatever is after the first 4 characters is ignored. The guy who explained it to me liked that feature, but I thought it was creepy. |
|||
|
|
|
|
In PHP, a string is as good as a function pointer:
Unfortunately, this doesn't work:
|
||||
|
|
|
I'm surprised no one mentioned the REALLY ugly switch-case implementation im most C-like languages
The good thing is newer languages got it implemented right. |
||||||||||||||||
|
|
|
Ok, since question will be in intermittent mode, I'll join to the "fun" Go ( aka Issue9 ) use of upper case for visibility:
Visible outside the package:
Not visible outside the package
You can find more in this original answer. |
||||
|
|
|
JavaScript dates are full of WTF.
|
|||
|
|
|
|
In Perl you can do:
Is this possible in other languages? |
||||||||
|
|
|
In Scala, there are no operators, just methods. So All ASCII letters have the lowest precedence, but all non-ASCII (unicode) characters have the highest precedence. So if you wrote a method And, just to top off the WTF of operators in Scala, all methods ending in |
|||
|
|
|
|
Might have already been said (and maybe this isn't so strange to some) but I thought this was pretty cool: In Javascript, declaring the parameters a function accepts is only a convenience to the programmer. All variables passed through the function call are accessible by the keyword "arguments". So the following would alert "world":
|
||||||||
|
|
|
In Ruby, 0 evaluates as true in conditional expressions. |
||||||||||||
|
|
|
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 |
||||||||||||||||||||
|
|
|
In JavaScript, seeing |
||||||||
|
|
|
In my opinion this should not be allowed in C++:
This may seem right, but this means that you cannot override a method without allowing users of the subclass to call the original method instead of the new one. Just think about a subclass of a collection where you want to increment the number of elements when adding an element to the collection itself. A logical solution would be to override the add() method to increase the counter before adding the element, but a user of the new collection could add an element to it using the old method so bypassing your increment and resulting in your elements-counter disagree with the actual number of elements of the collection. This is not possible in Java. |
||||||||||||||||||||
|
|
|
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 python, the "compile time" (or declaration time) evaluation of function arguments can be confusing:
The intention might have been:
This behavior is useful for things like caching, but it can be dangerous. A bonus feature: tuples with mutable contents:
|
||||||||||||
|
|
|
In JavaScript the result of a method can depend upon the style braces are placed. This is the K&R style, where braces are placed right after the method signature and after a return statement:
Now, if I format this code to the Allman style, where braces are always placed on a new line, the result is different:
How come? In JavaScript the language places automatically semicolons at the end of each line if you won't do it yourself. So what really happened in the last code fragment was this:
So if you'd call |
|||
|
|
|
|
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. |
||||||||
|
|
|
In C:
I remember for some reason not seeing warnings (too much of them in some legacy code?) and puzzling over why conversion from int causes compiler error where non int-returning function is used. Compiler assuming such stuff was quite unexpected. |
|||
|
|
|
|
In Python:
These slice assignments also give the same results:
|
|||
|
|
|
|
Easy pickins, Erlang is full of them. For example, 3 forms of punctuation,
|
|||
|
|
|
|
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. |
||||||||
|
|
|
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:
|
||||||||
|
|
|
x = x + 1This was very difficult to digest when I was a beginner and now functional languages don't use it, which is even more difficult! If you don't see how this is strange: Consider the equals sign as a statement of assertion instead of an assignment action, as you used to do in basic algebra, then this is the equivalent of saying "zero equals one". |
||||||||
|
|
|
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 |
||||
|
|
|
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...
|
||||||||
|
|
|
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
|
|||
|
|
|
|
MUMPS. There are lots of WTF features, I've picked one, the
This is similar to saying in Java:
Except that in MUMPS, the This means that if
The |
||||
|
|
|
In SQL
So you can't do:
This will always return false.
|
||||||||||||
|