标签: scala apache-spark
在Scala中使用Spark进行编程时,我看到了两种选择:
rdd.map(x => (x(5), 1))
和
rdd.map{x => (x(0), Set(x(1)))}
使用()和{}有什么区别?
()
{}