📜  带有示例的 Scala SortedSet takeRight() 方法

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

带有示例的 Scala SortedSet takeRight() 方法

takeRight()方法用于返回由 SortedSet 的最后 'n' 个元素组成的 SortedSet。

示例 #1:

// Scala program of takeRight() 
// method 
import scala.collection.immutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(1, 2, 3, 4, 1) 
          
        // Applying takeRight method 
        val result = s1.takeRight(4) 
          
        // Display output
        println(result)
    } 
} 
输出:
TreeSet(1, 2, 3, 4)

示例 #2:

// Scala program of takeRight() 
// method 
import scala.collection.immutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(41, 12, 23, 43) 
          
        // Applying takeRight method 
        val result = s1.takeRight(3) 
          
        // Display output
        println(result)
    } 
} 
输出:
TreeSet(23, 41, 43)