📜  带有示例的 Scala TreeSet find() 方法

📅  最后修改于: 2022-05-13 01:55:23.559000             🧑  作者: Mango

带有示例的 Scala TreeSet find() 方法

在 Scala TreeSet class中, find()方法用于返回满足 TreeSet 中给定谓词的元素。

示例 #1:

// Scala program of find() 
// method 
  
// Import TreeSet
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val t1 = TreeSet(2, 4, 6, 7, 8, 9) 
          
        // Print the TreeSet
        println(t1) 
          
        // Applying find() method  
        val result = t1.find(x => {x % 7 == 0})
          
        // Displays output 
        println("Element divisible by 7: " + result)
          
    } 
} 
输出:
TreeSet(2, 4, 6, 7, 8, 9)
Element divisible by 7: Some(7)

示例 #2:

// Scala program of find() 
// method 
  
// Import TreeSet
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val t1 = TreeSet(2, 4, 6, 7, 8, 9) 
          
        // Print the TreeSet
        println(t1) 
          
        // Applying find() method  
        val result = t1.find(x => {x % 10 == 0})
          
        // Displays output 
        println("Element divisible by 10: " + result)
          
    } 
} 
输出:
TreeSet(2, 4, 6, 7, 8, 9)
Element divisible by 10: None