Scala Stack +:() 方法示例
在 Scala 中,scala.collection.mutable 实现了 Stack 数据结构。 +: 方法类似于 Stack 中的 ++ 方法,它提供了一个带有前置元素的堆栈副本。请注意,结束运算符是右结合的。
Method Definition – def +:(elem: A)
Returns – A new stack consisting of elem followed by all elements of this stack.
示例 #1:
// Scala program of mutable stack +:()
// method
// Import Stack
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a value
val q1 = 1
val q2 = Stack("for", "geeks")
// Applying +:() method
val result = q1 +: q2
// Display output
print(result)
}
}
输出:
Stack(1, for, geeks)
示例 #2:
// Scala program of mutable stack +:() method
// Import Stack
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a stack
val q1 = List(1 )
val q2 = List(11, 12, 13, 14, 15)
// Applying ++() method
val result = q1.+:(q2)
// Display output
print(result)
}
}
输出:
List(List(11, 12, 13, 14, 15), 1)