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


Scala Map last()用法及代码示例


last()方法用于返回Map的最后一个元素。

函数定义: def last: (A, B)

返回类型: It returns the last element of the map.



下面是Map last()方法的示例。
范例1:

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

在此,从Map的三个元素中,返回Map的第三个元素。
范例2:

// Scala program of last() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating map 
        val m1 = Map("geeks" -> 5) 
          
        // Applying last method 
        val result = m1.last 
          
        // Displays output 
        println(result) 
      
    } 
}
输出:
(geeks, 5)


相关用法


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