जोड़ना दो Set[Int]
काम करता है:जोड़ना दो सेट [कोई]
Welcome to Scala version 2.8.1.final (Java HotSpot(TM) Server VM, Java 1.6.0_23).
Type in expressions to have them evaluated.
Type :help for more information.
scala> Set(1,2,3) ++ Set(4,5,6)
res0: scala.collection.immutable.Set[Int] = Set(4, 5, 6, 1, 2, 3)
लेकिन दो Set[Any]
जोड़ने नहीं करता है:
scala> Set[Any](1,2,3) ++ Set[Any](4,5,6)
<console>:6: error: ambiguous reference to overloaded definition,
both method ++ in trait Addable of type (xs: scala.collection.TraversableOnce[Any])scala.collection.immutable.Set[Any]
and method ++ in trait TraversableLike of type [B >: Any,That](that: scala.collection.TraversableOnce[B])(implicit bf: scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Any],B,That])That
match argument types (scala.collection.immutable.Set[Any])
Set[Any](1,2,3) ++ Set[Any](4,5,6)
^
कोई भी सुझाव इस त्रुटि को हल करने के लिए?
यह scala2.9 में तय किया गया था। Addable हटा दिया गया था। अधिक जानकारी के लिए [टिकट 4059] [https://lampsvn.epfl.ch/trac/scala/ticket/4059] देखें। – Eastsun