Scala笔记

0x01  List.remove报错

error: value remove is not a member of List[String]

改用: List.filterNot 

strings = List("one", "one", "two", "one)

需要删除所有的“two”

strings.filterNot(s => s=="two")

 

posted @ 2018-11-05 08:23  静静地挖坑  阅读(81)  评论(0编辑  收藏  举报