Scala Stack tail()方法及示例
在Scala Stack类中, tail() 方法被用来返回一个新的堆栈,其中包括除第一个元素之外的所有元素。
方法定义: def tail:Stack[A]
返回类型。它返回一个新的堆栈,其中包括除第一个元素之外的所有元素。
例子 #1:
// Scala program of tail()
// 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 tail method
val result = s1.tail
// Display output
print("Elements of the queue except the first one: " + result)
}
}
输出。
Stack(1, 3, 2, 7, 6, 5)
Elements of the queue except the first one: Stack(3, 2, 7, 6, 5)
例子#2。
// Scala program of tail()
// 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 tail method
val result = s1.tail
// Display output
print("Elements of the queue except the first one: " + result)
}
}
输出。
Stack(5, 3, 2, 7, 6, 1)
Elements of the queue except the first one: Stack(3, 2, 7, 6, 1)
极客教程