给定以下方案
val items = List("a", "b", "c", 1, 2, 3, false, true)
def intItems = items.collect {case i : Int => i}
def stringItems = items.collect {case s : String => s}
有没有办法创建通用函数来处理此行为?
我尝试了以下
def itemsAs[T]: List[T] = items.collect { case item: T => item }
但是
itemsAs[Int]
返回
List[Int]] = List(a, b, c, 1, 2, 3, false, true)
另一种方法是提供partial function
作为参数,但仍必须复制case i: Int => i
和case s: String => s
。有没有办法使其更紧凑?谢谢
val items = List("a", "b", "c", 1, 2, 3, false, true)
import scala.reflect.ClassTag
def collect[T: ClassTag] = items.collect { case x: T => x }
collect[Int] // List(1, 2, 3)
collect[String] // List(a, b, c)
请参阅http://docs.scala-lang.org/overviews/reflection/typetags-manifests.html。