Scala BitSet +(elems: Int*) 方法示例
Scala 位集是一组非负整数,它们表示为打包成 64 位字的可变大小的位数组。 +(elems: Int*) 方法用于创建一个带有附加元素的新集合,省略重复项。
Method Definition: def +()
Return Type: It returns a new set omitting duplicates.
示例 #1:
// Scala program of Bitset +
// method
import scala.collection.immutable.BitSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
val b2: Set[Int] = BitSet(5, 6, 7) + 55+56
// Displays output
println(b2)
}
}
输出:
BitSet(5, 6, 7, 55, 56)
示例 #2:
// Scala program of Bitset +
// method
import scala.collection.immutable.BitSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
val b2: Set[Int] = BitSet(5, 6, 7) + 5+6+0
// Displays output
println(b2)
}
}
输出:
BitSet(0, 5, 6, 7)