vote up 492 vote down star
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.

flag

241 Answers

1 2 3 4 5 9
vote up 13 vote down

As an NHibernate enthusiast, I was thrilled when I heard about become from Smalltalk... e.g.

a become: b

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.

link|flag
17  
Whenever somebody says "no other language has this", I tend to mentally append "... except Common Lisp": lispworks.com/documentation/HyperSpec/Body/… :-) – Ken Jan 4 at 16:55
2  
You can do this in Objective-C, see NSProxy (developer.apple.com/mac/library/documentation/…) – Mike Akers Jan 4 at 20:18
1  
@mookid: it's a shame that someone didn't think of features like this 20 years before C# existed... oh wait... – D.Shawley Jan 4 at 23:24
show 5 more comments
vote up 13 vote down

Why does C#'s List<T>.AddRange() not let me Add elements of a subtype of T? List<T>.Add() does!
All it would take would be ONE extra line of code on Microsoft's part:

public void AddRange<S>(
    IEnumerable<S> collection
) where S : T
link|flag
2  
Not really a language feature insomuch as it is a framework feature. Pedantic, I know... – Erik Forbes Jan 5 at 16:48
3  
It works with C# 4.0 due to new co- and contravariance features. – Michael Damatov Jan 6 at 9:17
2  
@Denis: Try it yourself. That single line of code does solve this particular example because it is basically mimicking covariance (or contravariance, I never know which one is which). – Martinho Fernandes Jan 7 at 2:39
show 2 more comments
vote up 13 vote down

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.

link|flag
show 2 more comments
vote up 13 vote down

In PHP, a string is as good as a function pointer:

$x = "foo";
function foo(){ echo "wtf"; }
$x(); # "wtf"

Unfortunately, this doesn't work:

"foo"();
link|flag
3  
PHP has a crap load of these syntax inconsistency, like you can't do this, function()[$index] – Kendall Hopkins Jan 8 at 20:18
show 2 more comments
vote up 13 vote down

I'm surprised no one mentioned the REALLY ugly switch-case implementation im most C-like languages

switch (someInt) {
    case 1:
    case 2: System.out.println("Forgot a break, idiot!");
    case 3: System.out.println("Now you're doing the wrong thing and maybe need hours to find the missing break muahahahaha");
            break;
    default: System.out.println("This should never happen -,-");        
}

The good thing is newer languages got it implemented right.

link|flag
2  
I like Delphi's handling of the case statement. A single line breaks automatically, a begin starts a block of text that breaks automatically after the end. – Tom Jan 5 at 0:32
5  
+1 OH GOD YES - when will they learn, it's always best to make the common case the default (no pun intended)? It would make much more sense (without breaking ANY optimizations) to leave the break out, and have a "continue" keyword for the RARE occasions that we want to actually continue onto the next case. – BlueRaja Jan 5 at 5:32
1  
Oh, I really hate that newer languages have changed the behavior. Now when I mix loops and switch in them and put break there out of habit I get the bug I could never find looking at the code. – vava Jan 5 at 11:18
1  
@BlueRaja: continue has useful behaviour inside a switch (as does break), so overloading either of those words to mean either "fall through" or "leave the switch" is, in my opinion, a bad idea. – Chris Jester-Young Jan 5 at 18:39
show 3 more comments
vote up 12 vote down

Ok, since question will be in intermittent mode, I'll join to the "fun"

Go ( aka Issue9 ) use of upper case for visibility:

  • If you name something with uppercase it will have public access.

  • If you use lower case it will be package-protected:

Visible outside the package:

func Print(v ...) { 
}

Not visible outside the package

func print( v ... ) {
}

You can find more in this original answer.

link|flag
7  
+1 for referring to the language as Issue 9. :-D – Chris Jester-Young Jan 5 at 18:43
show 1 more comment
vote up 12 vote down

JavaScript dates are full of WTF.

var d = new Date("1/1/2001");

var wtfyear = d.getYear(); // 101 (the year - 1900)
// to get the *actual* year, use d.getFullYear()

var wtfmonth = d.getMonth(); // 0
// months are 0-based!
link|flag
show 5 more comments
vote up 11 vote down

In Perl you can do:

my $test = "Hello World";
substr($test, 0, 5) = "Goodbye";

print $test;

Is this possible in other languages?

link|flag
3  
Wow, I really want to learn Perl now after reading all these cool tips. – Kevin Jan 5 at 1:23
9  
I'm not really sure these were intended to be "tips"... – Jimmy Jan 5 at 1:38
show 6 more comments
vote up 11 vote down

In Scala, there are no operators, just methods. So a + b - c is actually the same as a.+(b).-(c). In this, it is equal to Smalltalk. However, unlike Smalltalk, precedence is taken into account. The rules are based on the first character, so an hypothetical method called *+ would have precedence over one called +*. An exception is made so that any method ending in = will have the same precedence as == -- meaning !! and != (non-hypothetical methods) have different precedence.

All ASCII letters have the lowest precedence, but all non-ASCII (unicode) characters have the highest precedence. So if you wrote a method is comparing two ints, then 2 + 2 is 1 + 3 would compile and be true. Were you to write it in portuguese, é, then 2 + 2 é 1 + 3 would result in error, as it would see that as 2 + (2 é 1) + 3.

And, just to top off the WTF of operators in Scala, all methods ending in : are right-associative instead of left-associative. That means that 1 :: 2 :: Nil is equivalent to Nil.::(2).::(1) instead of 1.::(2).::(Nil).

link|flag
show 3 more comments
vote up 11 vote down

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":

<script type="text/javascript">

function blah(){
alert(arguments[1]);
}

blah("hello", "world");

</script> 
link|flag
1  
Yep, I assumed a lot of these were documented... Maybe not. It's still a strange language feature imo. – cmcculloh Jan 10 at 19:50
3  
The real WTF here is that arguments are not an Array. – Andrey Shchekin Jan 11 at 10:54
show 1 more comment
vote up 11 vote down

In Ruby, 0 evaluates as true in conditional expressions.

link|flag
5  
+1 because it can be a WTF, even though I think it's a good thing. – Chris Lutz Jan 11 at 6:30
3  
In Ruby only false and nil are false. I suppose it avoids using a magic number for false, if for instance 0 is a valid result for a function it could still return nil on a error and be used in an if statement. – Scott Wales Jan 14 at 3:41
2  
I think coercing numbers to booleans is a WTF - 0 should not be evaluatable as a boolean, it should be a type mismatch. – Richard Gadsden Jan 15 at 16:31
show 5 more comments
vote up 10 vote down

ActionScript 3:

When an object is used by its interface, the compiler doesn't recognize the methods inherited from Object, hence:

IInterface interface = getInterface();
interface.toString();

gives a compilation error. The workaround is casting to Object

Object(interface).toString();

PHP:

. and + operators. It has its reasonable explanation, but still "a" + "5" = 5 seems awkward.

Java (and any implementation of IEEE754):

System.out.println(0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1 + 0.1);

Outputs 0.9999999999999999

link|flag
1  
It's great that PHP didn't do what Javascript did with overloading the + operator for both string concatenation as well as addition. In PHP, if you see + you know you're talking about adding numbers. ...(unless you've got arrays...) – nickf Jan 4 at 8:08
7  
The first one isn't a WTF - it's a gotcha that catches most people sooner or later regarding the finite-precision floating point representation on computers. – MadKeithV Jan 4 at 13:28
5  
And it's not a Java WTF, it's WTF for any correct(!) implementation of IEEE754. – Martinho Fernandes Jan 4 at 14:14
2  
C# just gives me a 1 :) – Snake Jan 7 at 11:44
1  
That's because in C# the default type for a number with a floating point is Double. Having 0.1f instead of 0.1 would give the same result. – Allon Jan 7 at 15:29
show 7 more comments
vote up 10 vote down

In JavaScript, seeing !!a for the first time (as a way to convert to boolean).

link|flag
8  
Good thing you haven't run across ~~a for int coercion then. – Karl Guertin Jan 5 at 14:01
1  
Well you can do int by +a which is also shorter. – Andrey Shchekin Jan 5 at 20:05
show 3 more comments
vote up 9 vote down

In my opinion this should not be allowed in C++:

class A {
public:
  virtual string foo(){return "A::foo";}
};

class B : public A {
public:
  virtual string foo(){return "B::foo";}
};

int main () {
  B* b = new B();
  // In my opinion the following should not be allowed
  cout << b->A::foo() << endl;  // Will print "A::foo"
}

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.

link|flag
4  
I think who ever downvoted this two times should give some reasons why he did - I can't see anything wrong. – Brian Schimmel Jan 3 at 20:29
9  
Just more examples of trying to make object-orientation do things it's not supposed to be doing. The syntax makes it very clear that you are purposely calling the base function. If you really don't want that to happen, the two classes are most likely not Liskov-Substitutable, and you should be using protected or private inheritance which disallows this construction, or even aggregating the "A" inside a completely new object so that A is not available from the outside. – MadKeithV Jan 4 at 13:39
8  
You seem to be taking an attitude opposite Stroustrup's. Stroustrup didn't worry about features having the potential for misuse, provided they were sufficiently useful. C++ is full of abusable features. – David Thornley Jan 4 at 22:39
1  
@David You are right. Every choice made by language designers make sense from their point of view: here I'm just saying that in this specific case I have a different opinion and that I don't agree with the language designer. I really think that this is violation of the way it was intended to work in general OOP and the fact that Stroustrup decided to allow this make me feel a bit unconfortable. Don't you have fear of the fact a user of your class can call a LESS specific version of a method you've overrided? Because in some cases I do :) – Andrea Zilio Jan 5 at 2:42
2  
There's a simple solution for this: make foo() protected in the base class (and rename it foo_core() or something). Then define a public non-virtual foo() in the base class that calls the protected virtual one. – munificent Jan 7 at 16:17
show 9 more comments
vote up 9 vote down

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:

H = INPUT :F(end)

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:

ANIMAL = 'DOG'
DOG = 'BARK'
output = $ANIMAL

will put the value 'BARK' on teh console. And because that isn't weird enough:

$DOG = 'SOUND'

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. "

link|flag
2  
the name of the language alone deserves an upvote here – kristof Jan 5 at 10:52
1  
Perl has all those features... – Andrew McGregor Jan 5 at 13:18
4  
PHP allows that aswell, $animal = "dog"; $dog = "bark"; echo $$animal; – Kristoffer S Hansen Jan 5 at 13:38
1  
I should've also mentioned that my university didn't have a SNOBOL compiler. Instead, we had a SPITBOL compiler. – Jeff S Jan 5 at 14:40
2  
The one time I wrote a class assignment in SNOBOL, it wasn't any fun at all. That language desperately needs better control structures, and that's far more important than having only one sort of statement (including label, main variable/value, pattern matching part or all of the former, equal sign, value to assign, and labels to jump to). – David Thornley Jan 6 at 16:12
show 2 more comments
vote up 9 vote down

In python, the "compile time" (or declaration time) evaluation of function arguments can be confusing:

def append(v, l = []):
    l.append(v)
    return l


print append(1)
print append(2)

>>> [1]
>>> [1,2]

The intention might have been:

def append(v, l = None):
    if l is None:
        l = []
    l.append(v)
    return l

print append(1)
print append(2)

>>> [1]
>>> [2]

This behavior is useful for things like caching, but it can be dangerous.

A bonus feature: tuples with mutable contents:

a = (1,2,[3])
a[2][:] = [4] # OK
a[2] = [2] # crashes
link|flag
1  
+1, I would say this is THE major wtf of Python – BlueRaja Jan 5 at 5:45
2  
@Roger Pate: Every single Python programmer gets bitten by this at some point, after which they have to constantly keep it in the back of their mind. That is exactly what constitutes a language-gotcha ( ferg.org/projects/… ). – BlueRaja Jan 6 at 3:21
1  
You can't return l.append(1). You have to l.append(1); return l because list.append returns nothing. – Chris Lutz Jan 6 at 5:45
show 2 more comments
vote up 9 vote down

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:

var foo = function() {
  return {
    key: 'value'
  };
}

foo() // returns an object here

Now, if I format this code to the Allman style, where braces are always placed on a new line, the result is different:

var foo = function()
{
  return
  {
    key: 'value'
  };
}

foo() // returns undefined here

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:

var foo = function()
{
  return; // here's actually a semicolon, automatically set by JavaScript!
  {
    key: 'value'
  };
}

So if you'd call foo(), the first statement in the method would be a return statement, which would return undefined and would not execute other following statements.

link|flag
show 2 more comments
vote up 8 vote down

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.

link|flag
3  
Oh man this sucked. I was so glad they pulled that out in later versions of VB.NET. They really should have just created VB.Sharp and left the compatibility argument on the table. – Jeff Atwood Jan 4 at 20:21
1  
+1 for the return statement. Having to use the name of the function for returning values was a big #fail (oh, sorry, this ain't Twitter right? :) – Adrian Kosmaczewski Jan 7 at 9:54
show 3 more comments
vote up 8 vote down

In C:

warning C4013: 'myfunc' undefined; assuming extern returning int

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.

link|flag
show 2 more comments
vote up 8 vote down

In Python:

>>> a[0] = "hello"
NameError: name 'a' is not defined
>>> a[0:] = "hello"
NameError: name 'a' is not defined
>>> a = []
>>> a[0] = "hello"
IndexError: list assignment index out of range
>>> a[0:] = "hello"
>>> a
['h', 'e', 'l', 'l', 'o']

These slice assignments also give the same results:

a[:] = "hello"
a[42:] = "hello"
a[:33] = "hello"
link|flag
show 2 more comments
vote up 8 vote down

Easy pickins, Erlang is full of them. For example, 3 forms of punctuation,

a_function(SomeVariable) ->
  statements_end_with_commas(),
  case PatternMatching of
    0 -> now_we_end_with_semicolon;
    true -> except_the_last_one
  end.

%%  Function definitions end with periods!
link|flag
show 2 more comments
vote up 8 vote down

In C#, this should at least generate a compiler warning, but it doesn't:

public int Something
{
    get { return Something; }
    set { Something = value; }
}

When called, it causes your app to crash, and you don't get a good stack trace, since it's a StackOverflowException.

link|flag
18  
It's simple recursion, and one could write a perfectly valid recursively evaluated property. While the compiler could potentially be hard coded to catch some very simple cases of infinite recursion, to enforce it as a rule in the language would require a solution to the Halting Problem. Are you a bad enough dude to solve the Halting Problem? – David Jan 6 at 13:24
1  
I think this issue is considered fixed in the current version of the language. You should be using auto properties if your property is trivial. – Mehrdad Afshari Jan 7 at 13:01
show 1 more comment
vote up 8 vote down

In javascript (and java I think) you can escape funny characters like this:

var mystring = "hello \"world\"";

if you want to put a carriage return into a string though, that's not possible. you have to use \n like so:

var mystring = "hello, \nworld";

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:

var mystring = "hello, \
world";
link|flag
1  
The same as good old C syntax. But remember that standard HTML expects CR+LF ("\r\n") newlines. – Loadmaster Jan 7 at 3:28
2  
@Loadmaster: sure you didn't mean HTTP? afaik HTML is line-separator-agnostic – Christoph Jan 10 at 14:01
show 2 more comments
vote up 8 vote down

x = x + 1

This 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".

link|flag
4  
Did you come from a math background prior to programming? – Erik Forbes Jan 5 at 16:43
1  
One interpretation is that this is really x'' = x' + 1, but time is implicit in programming (bottom to top of source code), while it must be made explicit in math. – Justin Smith Jan 18 at 17:57
show 6 more comments
vote up 7 vote down

In C or C++ you can have a lot of fun with Macros. Such as

#define FOO(a,b) (a+b)/(1-a)

if FOO(bar++,4) is passed in it'll increment a twice.

link|flag
15  
or #define false true – RCIX Jan 3 at 15:49
8  
#define while if (who needs loops?) #define void int ("Why is the compiler complaining about no explicit return from my void functions?") #define main(argv, argc) (main)(argc, argv) (switch argv and argc for no apparent reason) – Chris Lutz Jan 4 at 7:24
3  
While there are dumb things you can do with #define, there ARE perfectly valid reasons for defining it the way it was defined. As opposed to some of the other entries here... – Brian Postow Jan 4 at 20:49
5  
I've seen someone on stackoverflow mention #define private public. – luiscubal Jan 4 at 21:50
1  
@wheaties: A long time ago, in a computer lab far away, some people came up with the C language. And C was without void at first; void only really appeared with standard C. That meant there were a heck of a lot of people with old compilers who wanted to run modern C code, and #define void int worked well enough to run some C90 code in K&R compilers. – David Thornley Jan 4 at 22:37
show 7 more comments
vote up 7 vote down

Perl filehandle-style operator calls.

In the beginning, there was

print "foo", "bar", "baz"; # to stdout
print STDERR "foo", "bar", "baz";

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 x FOO y, z, abc into FOO->x(y, z, abc). Kinda cute. The same print statement effectively runs

STDERR->print("foo", "bar", "baz");

Mostly you notice this when you miss a comma, or try to run something like hashof $a, $b, $c (subroutine call without parentheses) and forget to import the hashof function into your namespace from its utility package, and you get a weird error message about "Can't call method 'hashof' on via package 'contents of string $a'".

link|flag
3  
oh god, the horror is beautiful. : ) – Aaron F. Jan 5 at 11:41
show 1 more comment
vote up 7 vote down

VBScript's date/time literals (why is this still so rare?):

mydate = #1/2/2010 5:23 PM#

If mydate > #1/1/2010 17:00# Then ' ...

Edit: Date literals are relative (are they technically literals, then?):

mydate = #Jan 3# ' Jan 3 of the current year

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...

mydate = #Feb 29# ' executed on 2010-01-05, yields 2/1/2029
link|flag
3  
My issue with DateTime Literals is that they can be ambiguous - mydate = #10/9/2009 18:35# - October 9 or September 10? Nowadays I'm guessing it's always mm/dd/yyyy, but for non-US users it's always very odd to have a date not in dd/mm/yyyy format. In languages that have a Date constructor, you at least can always refer to the signature, but I guess it's not that different from just looking it up in the help or memorizing it. On the other hand: A whole language construct for Dates seems very "heavy". I can understand why Visual Basic has it (Office VBA), but I wouldn't see much use i.e. in C# – Michael Stum Jan 5 at 3:18
1  
@Michael Stum: Agreed. ISO 8601 should probably be used, just to keep things clear. I guess the relative weight of language features depends a great deal on how it impacts the programmer personally. – brianary Jan 5 at 16:18
show 4 more comments
vote up 7 vote down

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 :

namespace {
    define('test\true', 42);
    define('test\false', 42);
    define('test\null', 42);
}

namespace test {
    var_dump(true === false && false === null); // is (bool) true
}

Of course if you want your trues to be true, you can always import true from the global namespace

namespace test {
    var_dump(\true === \false); // is (bool) false
}
link|flag
vote up 7 vote down

MUMPS. There are lots of WTF features, I've picked one, the if statement. (Note that I'm using a rather verbose coding style below in order to accomodate those who don't know the language; real MUMPS code is usually more inscrutable to the uninitiated.)

if x>10 do myTag(x)    ; in MUMPS "tag" means procedure/function
else  do otherTag(x)

This is similar to saying in Java:

if (x > 10) {
  myMethod(x);
} else {
  otherMethod(x);
}

Except that in MUMPS, the else statement isn't syntactically part of the if block, it is a separate statement that works by examining the built-in variable $TEST. Every time you execute an if statement it sets $TEST to the result of the if statement. The else statement actually means "execute the rest of line if $TEST is false, otherwise skip to the next line".

This means that if x was greater than 10 and thus the first line called myTag, and myTag contains if statements, then the behavior of the else depends not on the if in the line above it but on the last if evaluated inside of myTag! Because of this "feature", MUMPS coders are generally taught write the above code like this to be safe:

if x>10 do myTag(x) if 1
else  do otherTag(x)

The if 1 at the end of the first line ensures that $TEST is set correctly before control proceeds to the next line. (BTW, the spacing here has to be just so, with two spaces after the else and one space in all the other places. The spacing is odd but at least it's very orthogonal once you understand the pattern.)

link|flag
2  
This is the most staggeringly bad piece of language design I have seen yet. My heart goes out to you and your fellow MUMPS programmers. – j_random_hacker Jan 31 at 7:46
show 1 more comment
vote up 7 vote down

In SQL

NULL is not equal to NULL

So you can't do:

WHERE myValue == NULL

This will always return false.

NULL != NULL
link|flag
3  
It makes perfect sense. I have should have two values but I don't know what they are. Are they the same value? I DO NOT KNOW. – Tom Hawtin - tackline Jan 9 at 3:05
2  
@Tom if you don't know what it is, then what's it doing in the database? – Breton Jan 10 at 23:09
1  
No, NULL is NULL. And it's not equal to NULL, because it's not really a value. And it doesn't mean "I don't know" it just means "There is no value for this column in this row". – jae Jan 12 at 6:56
show 4 more comments
1 2 3 4 5 9

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.