Scala Mutable SortedSet last() 方法
在 Scala 可变集合中, last()方法用于返回 SortedSet 的最后一个元素。
Method Definition: def last: A
Return Type: It returns the last element of the SortedSet.
示例 #1:
// Scala program of last()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(1, 2, 3, 4)
// Applying last method
val result = s1.last
// Display output
println(result)
}
}
输出:
4
示例 #2:
// Scala program of last()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet("geeks", "for", "geeks", "classes")
// Applying last method
val result = s1.last
// Display output
println(result)
}
}
输出:
geeks