带有示例的 Scala SortedSet takeRight() 方法
takeRight()方法用于返回由 SortedSet 的最后 'n' 个元素组成的 SortedSet。
Method Definition: def takeRight(n: Int):SortedSet[A]
Where ‘n’ is specifies the number of elements to select.
Return Type: It returns a SortedSet consisting of last ‘n’ elements of the 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)