Scala Stack last()方法与实例
在Scala Stack类中, last() 方法被用来返回栈的最后一个元素。
方法定义:def last:A
返回类型。它返回堆栈的最后一个元素。
例子 #1:
// Scala program of last()
// method
// Import Stack
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating stack
val s1 = Stack(1, 3, 2, 7, 6, 5)
// Print the stack
println(s1)
// Applying last method
val result = s1.last
// Display output
print("The last element of the stack: " + result)
}
}
输出。
Stack(1, 3, 2, 7, 6, 5)
The last element of the stack: 5
例子#2。
// Scala program of last()
// method
// Import Stack
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating stack
val s1 = Stack(1, 3, 2, 7, 6, 13)
// Print the stack
println(s1)
// Applying last method
val result = s1.last
// Display output
print("The last element of the stack: " + result)
}
}
输出。
Stack(1, 3, 2, 7, 6, 13)
The last element of the stack: 13
极客教程