Scala Stack init()方法与实例
在Scala Stack类中,init()方法被用来返回一个新的堆栈,该堆栈由除最后一个以外的所有元素组成。
方法定义:def init:Stack[A]
返回类型。它返回一个由所有元素组成的新堆栈,除了最后一个元素。
例子 #1:
// Scala program of init()
// 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 init method
val result = s1.init
// Display output
print("Elements of the queue except the last one: " + result)
}
}
输出。
Stack(1, 3, 2, 7, 6, 5)
Elements of the queue except the last one: Stack(1, 3, 2, 7, 6)
例子#2。
// Scala program of init()
// method
// Import Stack
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating stack
val s1 = Stack(5, 3, 2, 7, 6, 1)
// Print the stack
println(s1)
// Applying init method
val result = s1.init
// Display output
print("Elements of the queue except the last one: " + result)
}
}
输出。
Stack(5, 3, 2, 7, 6, 1)
Elements of the queue except the last one: Stack(5, 3, 2, 7, 6)
极客教程