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


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


&() 方法用於創建一個新集合,其中包含兩個給定集合中存在的所有元素。

函數定義:

返回類型: It returns a new set consisting of all elements that are present in both the 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(1, 12, 23)

示例#2:


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


相關用法


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