📜  Scala Mutable SortedSet count() 方法

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

Scala Mutable SortedSet count() 方法

在 Scala 可变集合中, count()方法用于计算 SortedSet 中元素的数量。

示例 #1:

// Scala program of count()
// method
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating SortedSets 
        val s1 = SortedSet(10, 22, 32, 4, 5) 
          
        // Applying count method 
        val result = s1.count(z=>true) 
          
        // Displays output 
        println(result) 
      
    } 
} 
输出:
5

示例 #2:

// Scala program of count()
// method
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating SortedSets 
        val s1 = SortedSet(72, 666, 454) 
          
        // Applying count method 
        val result = s1.count(z=>true) 
          
        // Displays output 
        println(result) 
      
    } 
} 
输出:
3