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


Scala mutable SortedSet &()用法及代碼示例


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

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

返回類型: It returns a new SortedSet consisting of all elements that are present in both the given SortedSets.

示例#1:


// Scala program of &() method  
import scala.collection.mutable.SortedSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a SortedSet  
        val s1 = SortedSet(100, 41, 12, 43, 1, 72)  
          
        val s2 = SortedSet(10, 100, 50, 12, 23) 
          
        // Applying &() method  
        val result = s1 & (s2) 
              
        // Display output 
        print(result)  
          
    }  
}  
輸出:
TreeSet(12, 100)

示例#2:


// Scala program of &() method  
import scala.collection.mutable.SortedSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a SortedSet  
        val s1 = SortedSet(51, 33, 95, 7)  
          
        val s2 = SortedSet(20, 44, 96, 8) 
          
        // Applying &() method  
        val result = s1 & (s2) 
              
        // Display output 
        print(result)  
          
    }  
}  
輸出:
TreeSet()


相關用法


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