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


Scala TreeSet intersect()用法及代码示例


在 Scala TreeSet class,则使用intersect()方法返回一个新的TreeSet,该树集由两个给定TreeSet中都存在的元素组成。

函数定义: def intersect[B >: A](that: collection.Seq[B]): TreeSet[A]

返回类型: It returns a new TreeSet that consists of elements that are present in both the given TreeSet.



范例1:

// Scala program of intersect()  
// method  
  
// Import TreeSet 
import scala.collection.mutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating TreeSets 
        val t1 = TreeSet(1, 3, 2, 7, 6, 5)  
          
        val t2 = TreeSet(11, 3, 12, 7, 16, 5)  
          
        // Print the TreeSets 
        println("t1: " + t1) 
          
        println("t2: " + t2) 
          
        // Applying intersect() method   
        val result = t1.intersect(t2) 
          
        // Displays output  
        println("TreeSet with common elements: " + result) 
          
    }  
} 
输出:
t1: TreeSet(1, 2, 3, 5, 6, 7)
t2: TreeSet(3, 5, 7, 11, 12, 16)
TreeSet with common elements: TreeSet(3, 5, 7)

范例2:

// Scala program of intersect()  
// method  
  
// Import TreeSet 
import scala.collection.mutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating TreeSets 
        val t1 = TreeSet(1, 3, 2, 7, 6, 5)  
          
        val t2 = TreeSet(1, 13, 2, 17, 16, 5)  
          
        // Print the TreeSets 
        println("t1: " + t1) 
          
        println("t2: " + t2) 
          
        // Applying intersect() method   
        val result = t1.intersect(t2) 
          
        // Displays output  
        println("TreeSet with common elements: " + result) 
          
    }  
} 
输出:
t1: TreeSet(1, 2, 3, 5, 6, 7)
t2: TreeSet(1, 2, 5, 13, 16, 17)
TreeSet with common elements: TreeSet(1, 2, 5)


相关用法


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