如何在一种情况下对每个数字类进行模式匹配?

时间:2013-11-03 19:31:58

标签: scala pattern-matching

假设我有

def foo(x: Any) = x match {
  case s: String => println(0)
  case i: Int => println(1)
  case l: Long => println(2)
  //...
}

有没有办法制作类似下面的内容?

def foo(x: Any) = x match {
  case s: String => println(0)
  case i: Numeric => println("Numeric")
}

2 个答案:

答案 0 :(得分:5)

您可以与Number界面匹配:

def foo(x: Any) = x match {
  case s: String => println(0)
  case i: java.lang.Number => println("Numeric")
}

答案 1 :(得分:3)

你可以试试这个:

def foo[A](x: A)(implicit num: Numeric[A] = null) = Option(num) match {
  case Some(num) => println("Numeric: " + x.getClass.getName)
  case None => println(0)
}

然后这个

foo(1)
foo(2.0)
foo(BigDecimal(3))
foo('c')
foo("no")

将打印

Numeric: java.lang.Integer
Numeric: java.lang.Double
Numeric: scala.math.BigDecimal
Numeric: java.lang.Character
0

请注意,获取null隐式参数并不意味着不存在这样的隐式参数,只是在编译时没有找到任何隐含参数。