我可以定义一个接受Seq[Char]
def f(s: Seq[Char]) = s
如果我传入 a ,它会起作用String
:
scala> f("this")
res8: Seq[Char] = this
这意味着我可以在 a 中使用它map
:
scala> List("this").map(s => f(s))
res9: List[Seq[Char]] = List(this)
那么为什么我不能这样做呢?:
scala> List("this").map(f)
<console>:10: error: type mismatch;
found : Seq[Char] => Seq[Char]
required: java.lang.String => ?
List("this").map(f)
^