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


Scala Set &~()用法及代碼示例


&~() 方法用於創建一個新集合,該新集合由兩個給定集合之間的差異之後的元素組成。

函數定義: def &~(that: Set[A]): Set[A]

返回類型: It returns a set consisting of elements after the difference between two given sets.

示例#1:


// Scala program of &~()  
// method  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a set  
        val s1 = Set(41, 12, 23, 43, 1, 72)  
          
        val s2 = Set(1, 100, 5, 12, 23) 
          
        // Applying &~() method  
        val result = s1.&~(s2) 
              
        // Display output 
        print(result)    
          
    }  
}  
輸出:
Set(41, 72, 43)

示例#2:


// Scala program of &~()  
// method  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a set  
        val s1 = Set(1, 2, 5, 3, 4)  
          
        val s2 = Set(2, 4) 
          
        // Applying &~() method  
        val result = s2.&~(s1) 
              
        // Display output 
        print(result)    
          
    }  
}  
輸出:
Set()


相關用法


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