Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It's a sad fact of life on Scala that if you instantiate a List[Int], you can verify that your instance is a List, and you can verify that any individual element of it is an Int, but not that it is a List[Int], as can be easily verified:

scala> List(1,2,3) match {
     | case l : List[String] => println("A list of strings?!")
     | case _ => println("Ok")
     | }
warning: there were unchecked warnings; re-run with -unchecked for details
A list of strings?!

The -unchecked option puts the blame squarely on type erasure:

scala>  List(1,2,3) match {
     |  case l : List[String] => println("A list of strings?!")
     |  case _ => println("Ok")
     |  }
<console>:6: warning: non variable type-argument String in type pattern is unchecked since it is eliminated by erasure
        case l : List[String] => println("A list of strings?!")
                 ^
A list of strings?!

Why is that, and how do I get around it?

share|improve this question

8 Answers

up vote 158 down vote accepted

Scala was defined with Type Erasure because the Java Virtual Machine (JVM), unlike Java, did not get generics. This means that, at run time, only the class exists, not its type parameters. In the example, JVM knows it is handling a scala.collection.immutable.List, but not that this list is parameterized with Int.

Fortunately, there's a feature in Scala that lets you get around that. It’s the Manifest. A Manifest is class whose instances are objects representing types. Since these instances are objects, you can pass them around, store them, and generally call methods on them. With the support of implicit parameters, it becomes a very powerful tool. Take the following example, for instance:

object Registry {
  import scala.reflect.Manifest

  private var map= Map.empty[Any,(Manifest[_], Any)] 

  def register[T](name: Any, item: T)(implicit m: Manifest[T]) {
    map = map.updated(name, m -> item)
  }

  def get[T](key:Any)(implicit m : Manifest[T]): Option[T] = {
    map get key flatMap {
      case (om, s) => if (om <:< m) Some(s.asInstanceOf[T]) else None
    }     
  }
}

scala> Registry.register("a", List(1,2,3))

scala> Registry.get[List[Int]]("a")
res6: Option[List[Int]] = Some(List(1, 2, 3))

scala> Registry.get[List[String]]("a")
res7: Option[List[String]] = None

When storing an element, we store a "Manifest" of it too. A Manifest is a class whose instances represent Scala types. These objects have more information than JVM does, which enable us to test for the full, parameterized type.

Note, however, that a Manifest is still an evolving feature. As an example of its limitations, it presently doesn't know anything about variance, and assumes everything is co-variant. I expect it will get more stable and solid once the Scala reflection library, presently under development, gets finished.

share|improve this answer
I agree that answering these kinds of questions is a good idea : I had read about this somewhere before, but it is much easier to find on stack overflow. – Tristan Juricek Jul 11 '09 at 11:29
2  
This reminds me of the Typesafe Heterogeneous Container popularized by Josh Bloch in Effective Java. And like tricks like Gafter's Gadget aka Super Type Tokens. If you're looking for further reading in the Java direction.... – Alex Miller Dec 21 '09 at 15:02
1  
The get method can be defined as for ((om, v) <- _map get key if om <:< m) yield v.asInstanceOf[T]. – Aaron Novstrup Dec 7 '10 at 16:03
@Aaron Very good suggestion, but I fear it might obscure the code for people relatively new to Scala. I wasn't very experience with Scala myself when I wrote that code, which was sometime before I put it in this question/answer. – Daniel C. Sobral Dec 7 '10 at 19:55
2  
@KimStebel You know that TypeTag are actually automatically used on pattern matching? Cool, eh? – Daniel C. Sobral Aug 26 '12 at 15:26
show 7 more comments

You can use the Typeable type class from shapeless to get the result you're after,

Sample REPL session,

scala> import shapeless.Typeable._
import shapeless.Typeable._

scala> val l1 : Any = List(1,2,3)
l1: Any = List(1, 2, 3)

scala> l1.cast[List[String]]
res0: Option[List[String]] = None

scala> l1.cast[List[Int]]
res1: Option[List[Int]] = Some(List(1, 2, 3))

The cast operation will be as precise wrt erasure as possible given the in-scope Typeable instances available.

share|improve this answer

I found a slightly better workaround for this limitation of the otherwise awesome language.

In Scala, the issue of type erasure does not occur with arrays. I think it is easier to demonstrate this with an example.

Let us say we have a list of (Int, String), then the following gives a type erasure warning

x match {
  case l:List[(Int, String)] => 
  ...
}

To work around this, first create a case class:

case class IntString(i:Int, s:String)

then in the pattern matching do something like:

x match {
  case a:Array[IntString] => 
  ...
}

which seems to work perfectly.

This will require minor changes in your code to work with arrays instead of lists, but should not be a major problem.

Note that using case a:Array[(Int, String)] will still give a type erasure warning, so it is necessary to use a new container class (in this example, IntString).

share|improve this answer
"limitation of the otherwise awesome language" it's less a limitation of Scala and more a limitation of the JVM. Perhaps Scala could have been designed to include type information as it ran on the JVM, but I don't think a design like that would have preserved interoperability with Java (i.e., as designed, you can call Scala from Java.) – Carl G Mar 16 at 16:25
As a followup, support for reified generics for Scala in .NET/CLR is an ongoing possibility. – Carl G Mar 16 at 16:29

There is a way to overcome the type erasure issue in Scala. In Overcoming Type Erasure in matching 1 and Overcoming Type Erasure in Matching 2 (Variance) are some explanation of how to code some helpers to wrap the types, including Variance, for matching.

I hope that helped.

share|improve this answer
1  
Jesse Eichar's blog entries are very worth reading. – Traveler Sep 7 '12 at 19:22

I came up with a relatively simple solution that would suffice in limited-use situations, essentially wrapping parameterized types that would suffer from the type erasure problem in wrapper classes that can be used in a match statement.

case class StringListHolder(list:List[String])

StringListHolder(List("str1","str2")) match {
    case holder: StringListHolder => holder.list foreach println
}

This has the expected output and limits the contents of our case class to the desired type, String Lists.

More details here: http://www.scalafied.com/?p=60

share|improve this answer

Scala 2.8 Beta 1 RC4 just made some changes to how type erasure works. I'm not sure if this directly affects your question.

share|improve this answer
3  
That's just what types erasure to, that has changed. The short of it can be summed as "Proposal: The erasure of "Object with A" is "A" instead of "Object"." The actual specification is rather more complex. It's about mixins, at any rate, and this question is concerned about generics. – Daniel C. Sobral Dec 21 '09 at 13:01
Thanks for the clarification -- I'm a scala newcomer. I feel like right now is a bad time to jump into Scala. Earlier, I could have learnt the changes in 2.8 from a good base, later I'd never have to know the difference! – Scott Morrison Dec 21 '09 at 15:36

I'm wondering if this is a suited workaround:

scala> List(1,2,3) match {
     |    case List(_: String, _*) => println("A list of strings?!")
     |    case _ => println("Ok")
     | }

It does not match the "empty list" case, but it gives a compile error, not a warning!

error: type mismatch;
found:     String
requirerd: Int

This on the other hand seems to work....

scala> List(1,2,3) match {
     |    case List(_: Int, _*) => println("A list of ints")
     |    case _ => println("Ok")
     | }

Isn't it kinda even better or am I missing the point here?

share|improve this answer
2  
Doesn't work with List(1, "a", "b"), which has type List[Any] – sullivan- Jul 26 '11 at 18:03
Although sullivan's point is correct and there are related problems with inheritance, I still found this useful. – Seth Dec 23 '12 at 0:52

Since Java does not know the actual element type, I found it most useful to just use List[_]. Then the warning goes away and the code describes reality - it is a list of something unknown.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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