作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
: -6ren">
为什么会有这种运算符(operator)方法
@deprecated("use `filterNot (_ == x)` instead", "2.8.0")
def - [B >: A](x: B): List[B]
//i.e. List(1,23,3,4,5) - 23
Set(1,23,3,4) - 23
最佳答案
List
方法的问题在于它从未执行过您期望的操作。天真的,我希望
1,2,3,1,2,3 - 1,2,3,1 == 2,3
1,2,3,1,2,3 - 1 == 2,3,1,2,3
1,2,3,1,2,3 - 1 == 2,3,2,3
filterNot
给出的,并且您应该期望得到)。
Set
的元素是唯一的,因此两种方法之间没有区别。
关于scala - 集合高级操作弃用(列表:List[A] - a:A),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9405545/
我是一名优秀的程序员,十分优秀!