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 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 |
|||||
|
|
In PHP, a string is as good as a function pointer:
Unfortunately, this doesn't work:
|
|||||||||
|
|
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 |
|||||||||
|
|
Other weird things: In C++ overriding a virtual method hides all other overloads of that method. In Java this does not happen. This is very annoying. Example: http://codepad.org/uhvl1nJp In C++ if a base class has a public virtual method foo() and a subclass has a private method foo(), this private method overrides the other one! This way you can call what is a private method outside of the class just by casting the subclass object pointer to a superclass object pointer. This shouldn't be possible: it's a violation of encapsulation. The new method should not be treated as an override of the old one. Example: http://codepad.org/LUGSNPdh In PHP you can define functions to accept typed parameters (e.g. objects that are subclasses of a certain interface/class), the annoying thing is that this way you cannot use NULL as the actual parameter value in this case. Example: http://codepad.org/FphVRZ3S |
|||||||||||||||||||||
|
|
Some 20 years ago, when I last dabbled in MUMPS, the implementations had some curious limitations. While hosts MUMPS was becoming ever more popular, MUMPS was traditionally a self-hosted language: computer language, operating system and database in a single package. MUMPS was essentially about its database. Essentially, a huge multidimensional hash table, supported by a B* tree that made for very fast access. There wasn't any barrier between the language and the database either: if you wanted something to be stored there, you just prefixed the variable with a symbol indicating it was to be persisted to the backing store. On the other hand, a filesystem was almost non-existent, and support for it even less so. About the only thing one could do was to load a program into memory from a file, and send whatever was in memory back to a file. And one had better clear the buffer before loading, otherwise it would get mixed with whatever was there first. So, considering its self-hosting nature and the extremely hostile file system, one could wonder how these programs were edited. The editors, as a matter of fact, were written in MUMPS itself -- so how could the editor store the program in memory without written over itself? Well, the trick was the ability to execute the contents of a variable as source code. An editor, then, loaded itself into variables, executed itself in them, cleared the memory, and then loaded, saved and edited files in memory, all the time executing from variables. Add to that the fact that all commands could be shortened to their first letters (except the Z commands, shortened to two letters, that mostly handled the filesystem), and curiosities like the fact that |
|||||||||||||||||
|
|
In Ruby, 0 evaluates as true in conditional expressions. |
|||||||||||||||||||||
|
|
The absolute worst WTF has got to be Cobol's ALTERED GOTO. The syntax is pretty straight forward: "ALTER label1 TO GOTO label2", but the results of debugging run-time spaghetti are mind-boggling. |
|||||||||||||
|
|
One of my favorites in C++ is the "public abstract concrete inline destructor":
I stole this from Scott Meyers in Effective C++. It looks a bit weird to see a method that's both pure virtual (which generally means "abstract") and implemented inline, but it's the best and most concise way I've found to ensure that an object is polymorphically destructed. |
|||||
|
|
In C-like languages (including C itself), you can use the "goes down to" operator:
This will print the numbers from 19 to 0. |
|||||||||||||
|
|
"Piet is an esoteric programming language designed by David Morgan-Mar, whose programs are bitmaps that look like abstract art."
Piet program that prints Piet |
||||
|
|
|
Well, this one's also my all-time-favorite hard to find bug... treating integers beginning with a zero as octal numbers. This led to a bug that would only show between 8 and 10 in the morning: Once, I helped building an automated regression test to be executed via cron at night. It worked nearly for everyone in a 20 person team - expect one developper complained every once in a while the automatic test had failed, but when run manually, everything worked fine. Not even once this could be reproduced manually. Well, the reason was, we did some calculation (in bash) for statistics based on the output of the date command, and this failed only from 8:00 till 9:59 in the morning because we'd read the hour value as "08" (which is an illegal octal value, whereas "01" - "07" are valid octal values, and from "10" onwards everything is treated as decimal again)... |
||||
|
|
|
JavaScript dates are full of WTF.
|
|||||||||||||||||
|
|
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. |
|||||||||||||||||
|
|
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. |
|||||||||
|
|
Common Lisp's In INTERCAL that is the only form of output you'll ever get. |
|||||||||||||
|
|
In C, the
Here, This allows one to write surprising code, to newcomers anyway. Note that no one in their right minds would actually do this:
This prints For some real fun/confusion with
(The confusion is only if one is confused about arrays, pointers, and operators.) |
|||||||||||||
|
|
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":
Note, that while it may seem like these arguments are stored in an array (since you can access object properties in much the same way as array elements), they are not.
|
|||||||||||||||||||||
|
|
Java caches Integer object instances in the range from -128 to 127. If you don't know this the following might be somewhat unexpected.
|
||||
|
|
|
Being able to cast out of range ints to enums in C# is quite weird in my opinion. Imagine this enum:
Now, if you write:
The compiler thinks that’s fine. And the runtime, too. See here for more details. |
|||||||||||||
|
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". |
|||||||||||||||||||||
|
|
Perl: It's possible to write a program consisting entirely of punctuation. How does this even work?! |
|||||
|
|
I'm surprised no one mentioned the REALLY ugly switch-case implementation in 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. |
|||||||||||||
|
|
Here's a good bunch of strange C features: http://www.steike.com/code/useless/evil-c/ |
||||
|
|
|
In JavaScript, seeing |
|||||||||||||
|
|
The C++ templating mechanism is Turing-complete: As long as you don't need input at run time, you can do arbitrary calculations at compile time. Arbitrary. Or you can easily write a C++ program that never compiles - but is syntactically correct. |
||||
|
|
|
In Perl you can do:
Is this possible in other languages? |
|||||||||||||
|
|
I like sneaking-in octal values in C:
|
|||||||||||||
|
|
This is one of my favorites, you can do a println in Java without main(). This will compile and run, giving the println, but also an exception (java.lang.NoSuchMethodError: main)
|
|||||||||||||
|
|
This may have been already mentioned, but -- PHP's handling of octal values:
See here: http://bugs.php.net/bug.php?id=29676 Also note the comments on the bug - Derick calls it a feature (as shown by quoting "fix"), not a bug and he claims it would "slow down PHP dramatically in all cases where numbers are used inside scripts" - but then, why does PHP raise an error for 0A? I think one could make a whole book about the weirdness of PHP... |
||||
|
|