网站介绍:文章浏览阅读1k次,点赞2次,收藏3次。dropRight功能同drop,去掉尾部的n个元素val a=Array(1,2,3,4,5)a.dropRight(2)Array[Int] = Array(1, 2, 3)dropWhile去除当前数组中符合条件的元素,前提条件是,需要从当前数组的第一个元素起就要满足调酒,直到碰到第一个不满足条件的元素结束。val a=Array(3,2,3,4)scala> val b=a.dropWhile(_>2)b: Array[Int] = Array(2, 3, 4)sc_scala的droprightinplace
- 链接地址:https://blog.csdn.net/qq_43012693/article/details/109306451
- 链接标题:Scala数组函数二(dropRight~intersect)_scala的droprightinplace-CSDN博客
- 所属网站:blog.csdn.net
- 被收藏次数:4185
- 网站标签:scala的droprightinplace