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


Scala Mutable SortedMap min()用法及代码示例


min()方法用于查找SortedMap的最小元素。

Method Definition: def min:(A, B)

Return Type: It returns the smallest element of the SortedMap.

范例1:

// Scala program of min() 
// method 
import scala.collection.SortedMap 
  
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating SortedMap 
        val m1 = SortedMap("geeks" -> 5, "for" -> 3, "cs" -> 2) 
          
        // Applying min method  
        val result = m1.min 
          
        // Displays output 
        println(result) 
    } 
}
输出:
(cs, 2)

正如我们在上面的示例中看到的那样,cs是SortedMap中最小的元素。范例2:

// Scala program of min() 
// method 
import scala.collection.SortedMap 
  
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating SortedMap 
        val m1 = SortedMap("geeks" -> 5, "for" -> 3, "for" -> 6) 
          
        // Applying min method  
        val result = m1.min 
          
        // Displays output 
        println(result) 
    } 
}
输出:
(for, 6)



相关用法


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