vote up 1 vote down star

I would like to create a java List based on another java Collection eg. Set in Scala.

Why is this not possible? I get a required: scala.this.Int error.

val in: java.util.Set[String] = new java.util.HashSet()
val out : java.util.List[String] = new java.util.ArrayList(in)

This worked however, but doesn't feel right:

val in: java.util.Set[String] = new java.util.HashSet()
val out: List[String] = new java.util.ArrayList()

out.addAll(in.asInstanceOf[java.util.Set[String]])

Thanks!

flag
Thanks for the answers! I noticed that if the Set's type was unspecified (no Generics used), this works too: val out: List[String] = new ArrayList[String](int.asInstanceOf[Set[String]]) – djt Jul 2 at 13:46
Thanks for the question - by trying to answer it I learnt a lot about Scala. BTW, if someone answers you it is polite to upvote or accept their answer. (I didn't answer, but I was grateful to those who did) – Nick Fortescue Jul 2 at 13:58
Filed in trac lampsvn.epfl.ch/trac/scala/ticket/2119 – James Iry Jul 2 at 20:21
Thanks for the pointer Nick! My first time around here :-) – djt Jul 3 at 8:47

2 Answers

vote up 1 vote down check

You'll need to explicitly pass the ArrayList type variable.

This works fine:

val in = new java.util.HashSet[String]
val out = new java.util.ArrayList[String](in)
link|flag
vote up 1 vote down

This works:

val in: java.util.Set[String] = new java.util.HashSet()
val out : java.util.List[String] = new java.util.ArrayList[String](in)

I assume the problem is somehow related to type erasure, as ArrayList is not parametrized as a Scala array would be, but, rather, it's an existential type. This is probably making the type inference impossible.

link|flag

Your Answer

Get an OpenID
or

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