Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Scala 标点符号(又名符号、运算符)
scala中的目的->和运算符是什么?<-是否有任何有用的文档可以解释 scala 中使用的各种运算符 - 我似乎太经常困惑了:)
->
<-
这两个运营商是非常不同的。
->运算符用于Tuple2制作 .
Tuple2
scala> 1 -> 2 res0: (Int, Int) = (1,2)
在<-for 语句中使用的意思是像“in”这样的东西。因此,对于每个xin someList,以下意味着 print x:
x
someList
for(x <- someList) println(x)