vote up 2 vote down star

I'm just wondering about an implementation detail of sScala generics. In C# one can declare a class as:

class Foo<T1>{}
class Foo<T1, T2>{}

In Scala however the same thing would have to be declared as

class Foo0[T1]{}
class Foo1[T1, T2]{}

Notice how the class name is forced to be changed for multiple generic parameters. Is there a reason that Scala decided to go this route rather than the C# one which I feel is more elegant? I know this is probably a pretty small nitpick, but I'm pretty curious as to the reasoning.

flag
wow. Sucks to be scala. – Will Jun 15 at 14:48

3 Answers

vote up 8 vote down check

I know Jon Skeet's answer has been accepted, but it's not quite right. It's not so much the JVM that forces a limitation as it is the Java language. Scala has a design goal of being as easily callable from Java as possible and Java has no concept of overloading a class name based on type parameter arity. For instance, a simple way to implement overloading based on type parameters on the JVM would be with name mangling. However that name mangling would have to be visible to Java and would be ugly. In your example, a hypothetical Scala might compile two classes, Foo_$1 and Foo_$2. Scala could make that mangling invisible. However, a Java programmer would see all that ugliness.

link|flag
1  
I'm pretty sure this is what C# does anyway. Foo<T>'s type name would be Foo`1. – justin Jun 16 at 13:31
vote up 1 vote down

I suppose it is done for easier mapping to Java, which has the same restriction.

It would have been possible to do some name mangling, but at the price of making interoperation with Java more difficult. In my view they took the right decision.

link|flag
vote up 2 vote down

It may well be partly due to Java's similar restrictions. As I understand it, Scala is mostly used on the JVM, where you can't overload generic types by arity.

It looks like Scala uses type erasure for its generics too, even in the .NET port. (The same article mentions that Scala had generics long before Java really did, so even if Java did support this, there's no guarantee that Scala would - they were somewhat restricted when they first designed the feature.)

link|flag
Wasn't type erasure just a clever (more or less) hack to avoid chages to the JVM? If so, wouldn't Scala require the very same changes to the JVM to support generics at runtime? I'd rather think Scala is not much better off than Java in that regard. – Johannes Rössel Jun 15 at 15:02
It would unless it added some type information into each instance as a hidden field, or something like that. It's certainly very difficult to add something like "proper" generics to a runtime that doesn't support them. – Jon Skeet Jun 15 at 15:06
1  
Note that Scala generics can be higher kind, unlike .NET's. I don't see how to add them into .NET without erasure. – Alexey Romanov Jun 15 at 17:24
@alexey_r: Fair enough - I don't know enough Scala to know. Would it be possible to use erasure where necessary for higher kind generics, but no erasure for "simple" generics? – Jon Skeet Jun 15 at 18:38
You certainly COULD create a language that overloaded based on type parameter arity on the JVM by inventing your own class name mangling scheme (very similar to how C++ overloads on function/method type and arity). But that would negate once important area of Java integration. Also, I don't see how erasure is "improper" given that most implementations of ML derivatives and Haskell erase all types at runtime. – James Iry Jun 15 at 21:59
show 1 more comment

Your Answer

Get an OpenID
or

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