當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala BitSet &()用法及代碼示例


Scala 位集是非負整數的集合,表示為打包成 64 位字的 variable-size 位數組。 &() 方法用於通過執行按位 “and” 來計算該位集與另一個位集之間的交集。

函數定義: def &()

返回類型: It returns a new bitset consisting of all elements that are both in this bitset.

示例#1:


// Scala program of Bitset & 
// method  
import scala.collection.immutable.BitSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
  
        val b1: BitSet = BitSet(41, 12, 23, 43, 1, 72)  
        val b2: BitSet = BitSet(1, 100, 5, 12, 23)  
  
        // Applying BitSet &() function  
        val bs1: BitSet = b1 & (b2) 
          
        // Displays output  
        println(bs1)  
      
    }  
}  
輸出:
BitSet(1, 12, 23)

示例#2:


// Scala program of Bitset & 
// method  
import scala.collection.immutable.BitSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
  
        val b1: BitSet = BitSet(41, 12, 23, 43, 1, 72)  
  
        // Applying BitSet &() function  
        val bs1: BitSet = b1 & BitSet(1, 100, 5, 12, 23)  
          
        // Displays output  
        println(bs1)  
      
    }  
}  
輸出:
BitSet(1, 12, 23)


相關用法


注:本文由純淨天空篩選整理自Shivam_k大神的英文原創作品 Scala BitSet &() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。