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.
以下代码段编译并运行良好
作为工作表的一部分使用时,我看到错误
请问这是为什么?
这可能只是一个错误/缺失的功能。
顺便说一句,您可以像下面的代码一样编写连接器来获得相同的行为,它也可以避免工作表问题。
def joiner(strings: List[String], separator: String = " ") = strings.mkString(separator)