当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala BitSet +()用法及代码示例


Scala 位集是非负整数的集合,表示为打包成 64 位字的 variable-size 位数组。 +() 方法用于创建一个带有附加元素的新集合,除非该元素已经存在。

函数定义: def +()

返回类型: It returns a new set that contains all elements of this set.

示例#1:


// Scala program of Bitset + 
// method  
import scala.collection.immutable.BitSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
  
        val bitSet: BitSet = BitSet(0, 1, 2, 3)  
        println(s"Elements in Bitset are = $bitSet")  
  
        // Applying BitSet +() function  
        val bs1: BitSet = bitSet + 10 + 11
          
        // Displays output  
        println(bs1)  
      
    }  
}  
输出:
Elements in Bitset are = BitSet(0, 1, 2, 3)
BitSet(0, 1, 2, 3, 10, 11)

示例#2:


// Scala program of Bitset + 
// method  
import scala.collection.immutable.BitSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
  
        val bitSet: BitSet = BitSet(0, 1, 2, 3 )  
        println(s"Elements in Bitset are = $bitSet")  
  
        // Applying BitSet +() function  
        val bs1: BitSet = bitSet + 1 + 2 + 3
          
        // Displays output  
        println(bs1)  
      
    }  
}  
输出:
Elements in Bitset are = BitSet(0, 1, 2, 3)
BitSet(0, 1, 2, 3)


相关用法


注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Scala BitSet +() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。