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 PHP function names are not case sensitive. This might lead you to think that all identifiers in php are not case sensitive. Guess again. Variables ARE case sensitive. WTF.
|
|||||||||
|
|
I've always been a huge fan of the PHP error thrown when using two colons in a row out of context:
The first time I encountered this I was absolutely befuddled. |
|||||||||||||||||||||
|
|
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. |
|||||||||||||||||||||
|
|
Python 2.x
You can really make someone become crazy with this one. |
|||||||||||||||||
|
|
Oracle has a couple of SQL WTF issues.
The only row returned is the (1,'dog') row. |
|||||||||||||||||||||
|
|
|
|||||||||
|
|
In JavaScript, It is frequently used in bookmarklets, and inline event handlers, as in this somewhat frequent example:
The way it's used in that example makes it look like a function invocation, when really it's just an overly clever way of getting the primitive Unfortunately, I think the void operator is the only truly guaranteed way to get the Update: I thought of another way to generate
Eh, a bit verbose though, and it's even less clear that returning "undefined" is its purpose. |
|||||||||||||||||
|
|
Perl has the yada yada operator (
|
|||||||||
|
|
In fortran (77 for sure, maybe in 95 as well), undeclared variables and arguments beginning with As told by Fred Webb in
I think it's a big WTF if |
|||||||||||||||||||||
|
|
My favorite little C++ syntax trick is that you can put URL's (with some restrictions) directly into the code:
This compiles just fine. Syntax highlighting kind of spoils the joke, but it's still fun. |
|||||||||||||
|
|
I would not dare to claim that XML is a programming language, but isn't it close to our heart? :-) The strangest feature, to my mind, in XML is that the following is a well-formed document:
Here is the the lexical definition of NT-Name that allows consecutive dots. |
|||||||||||||||||||||
|
|
Inheriting from random class in Ruby:
(first seen at Hidden features of Ruby) |
|||||||||||||||||
|
|
I love the fact that this sort of thing is fine in JavaScript:
and results in a date 77 months and 154 days from the 0th day of 0th month of 2010 i.e. Nov 1st 2016 |
|||||||||||||||||||||
|
|
I was taken by surprise that you can change a class's inheritance chain in Perl by modifying its
|
|||||||||||||||||||||
|
|
In JavaScript,
Due to the mutability of
|
|||||||||||||
|
|
In ruby/python/c, you can concatenate strings just like this:
|
|||||||||||||||||||||
|
|
In Forth, anything that does not contains spaces can be an identifier (things that contain spaces take a bit of work). The parser first checks if the thing is defined, in which case it is called a word, and, if not, checks if it is a number. There are no keywords. At any rate, this means that one can redefine a number to mean something else:
Which creates the word
On the other hand, a definition can take over the parser itself -- something which is done by the comment words. That means a Forth program can actually become a program in a completely different language midway. And, in fact, that's the recommended way of programming in Forth: first you write the language you want to solve the problem in, then you solve the problem. |
|||||||||||||
|
|
I added the "format" function to Lisp in about 1977, before "printf" even existed (I was copying from the same source as Unix did: Multics). It started off innocently enough, but got laden with feature after feature. Things got out of hand when Guy Steele put in iteration and associated features, which were accepted into the Common Lisp X3J13 ANSI standard. The following example can be found at Table 22-8 in section 22.3.3 of Common Lisp the Language, 2nd Edition:
|
|||||||||||||||||
|
|
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 |
|||||||||
|
|
Tri-valued logic of |
|||||||||||||
|
|
An amusing side effect of Python's everything-is-really-a-reference:
|
|||||||||||||||||||||
|
|
In JavaScript, you can use a double bitwise negation (
A single bitwise negation ( Update: Here’s a jsPerf test case comparing the performance of these alternatives. |
|||||
|
|
Not so much a weird feature, but one that's really irritating from a type-safety point of view: array covariance in C#.
This was inherited (pun intentional) from Java, I believe. |
|||||||||||||||||||||
|
|
My favorite weirdness in C is 5["Hello World"], but since that was already posted, my next-favorite weirdness is the Windows versioned-structure initialization hack:
That one, subtle line accomplishes the following:
|
|||||||||
|
|
Java; making all object instances be mutexes. |
|||||||||||||||||
|
|
In PHP one can do:
|
|||||
|
|
In JavaScript:
This was quite damaging to some 64bit keys I passed back and forth in JSON. |
|||||||||
|
|
From the Python documentation:
Output:
|
|||||||||||||||||||||
|
|
Some early dynamic languages (including, if I remember correctly, early versions of Perl) hadn't figured out what was good dynamism and what was bad dynamism. So some of them allowed this:
After that statement, the following would be true:
|
|||||||||||||
|
|
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:
|
|||||||||||||||||
|