带有示例的 Scala BitSet dropRight() 方法
Scala 位集是一组非负整数,它们表示为打包成 64 位字的可变大小的位数组。 drop() 方法用于选择除 n 项之外的所有元素。
Method Definition: def drop()
Return Type: It returns a iterable collection except the n items
示例 #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(1, 2, 3, 4, 5)
// Applying dropRight method
val s2 = s1.dropRight(2)
// Displays output
for(elem <- s2)
println(elem)
}
}
输出:
1
2
3
示例 #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(1, 2, 3, 7, 9, 4, 5)
// Applying dropRight method
val s2 = s1.dropRight(3)
// Displays output
for(elem <- s2)
println(elem)
}
}
输出:
1
2
3
4