Scala TreeSet的last()方法及示例
last() 方法用来返回TreeSet的最后一个元素。
方法定义:def last:A
返回类型。它返回TreeSet的最后一个元素。
例子 #1:
// Scala program of last()
// method
// Import TreeSet
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating TreeSet
val q1 = TreeSet(1, 2, 3, 4, 5)
// Print the TreeSet
println(q1)
// Applying last method
val result = q1.last
// Displays output
print("Last element of the TreeSet: " + result)
}
}
输出。
TreeSet(1, 2, 3, 4, 5)
Last element of the TreeSet: 5
例子#2。
// Scala program of last()
// method
// Import TreeSet
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating TreeSet
val q1 = TreeSet("u", "a", "i", "o", "e")
// Print the TreeSet
println(q1)
// Applying last method
val result = q1.last
// Displays output
print("Last element of the TreeSet: " + result)
}
}
输出。
TreeSet(a, e, i, o, u)
Last element of the TreeSet: u