带有示例的 Scala BitSet drop() 方法
Scala 位集是一组非负整数,它们表示为打包成 64 位字的可变大小的位数组。 drop() 方法用于选择除前 n 个元素之外的所有元素。
Method Definition: def drop()
Return Type: It returns a iterable collection except the first n ones
示例 #1:
// Scala program of drop()
// method
import scala.collection.immutable.BitSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating BitSet
val s1 = BitSet(5, 1, 2, 3, 4)
// Applying drop method
val s2 = s1.drop(2)
// Displays output
for(elem <- s2)
println(elem)
}
}
输出:
3
4
5
示例 #2:
// Scala program of drop()
// method
import scala.collection.immutable.BitSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating BitSet
val s1 = BitSet(5, 1, 2, 3, 4)
// Applying drop method
val s2 = s1.drop(4)
// Displays output
for(elem <- s2)
println(elem)
}
}
输出:
5