是否可以在Scala中执行以下操作:
class MyTest {
def foo[A <: String _or_ A <: Int](p:List[A]) = {}
}
也就是说,A
类型可以是String
或Int
。这可能吗?
(类似问题here)
答案 0 :(得分:11)
不太可能,因为你把它,但你可以使用类型类模式。例如,来自here:
sealed abstract class Acceptable[T]
object Acceptable {
implicit object IntOk extends Acceptable[Int]
implicit object LongOk extends Acceptable[Long]
}
def f[T: Acceptable](t: T) = t
scala> f(1)
res0: Int = 1
scala> f(1L)
res1: Long = 1
scala> f(1.0)
<console>:8: error: could not find implicit value for parameter ev: Acceptable[Double]
f(1.0)
^
修改强>
如果类和对象是伴侣,则此方法有效。在REPL上,如果您在不同的行上键入每个行(即,它们之间出现“结果”),则它们不是伴侣。您可以像下面这样输入:
scala> sealed abstract class Acceptable[T]; object Acceptable {
| implicit object IntOk extends Acceptable[Int]
| implicit object LongOk extends Acceptable[Long]
| }
defined class Acceptable
defined module Acceptable
答案 1 :(得分:5)
你可以从Either类型获得一点里程。但是,Either层次结构是密封的,处理两种以上的类型变得很麻烦。
scala> implicit def string2either(s: String) = Left(s)
string2either: (s: String)Left[String,Nothing]
scala> implicit def int2either(i: Int) = Right(i)
int2either: (i: Int)Right[Nothing,Int]
scala> type SorI = Either[String, Int]
defined type alias SorI
scala> def foo(a: SorI) {a match {
| case Left(v) => println("Got a "+v)
| case Right(v) => println("Got a "+v)
| }
| }
foo: (a: SorI)Unit
scala> def bar(a: List[SorI]) {
| a foreach foo
| }
bar: (a: List[SorI])Unit
scala>
scala> foo("Hello")
Got a Hello
scala> foo(10)
Got a 10
scala> bar(List(99, "beer"))
Got a 99
Got a beer
答案 2 :(得分:3)
答案 3 :(得分:2)
另一种解决方案是包装类:
case class IntList(l:List[Int])
case class StringList(l:List[String])
implicit def li2il(l:List[Int]) = IntList(l)
implicit def ls2sl(l:List[String]) = StringList(l)
def foo(list:IntList) = { println("Int-List " + list.l)}
def foo(list:StringList) = { println("String-List " + list.l)}
答案 4 :(得分:1)
有这个黑客:
implicit val x: Int = 0
def foo(a: List[Int])(implicit ignore: Int) { }
implicit val y = ""
def foo(a: List[String])(implicit ignore: String) { }
foo(1::2::Nil)
foo("a"::"b"::Nil)
请参阅http://michid.wordpress.com/2010/06/14/working-around-type-erasure-ambiguities-scala/
还有question。