Scala Stack ++:() 方法与示例
在 Scala 中,scala.collection.mutable 实现了 Stack 数据结构。 ++: 方法类似于 Stack 中的 ++ 方法,它给出了一个新堆栈,其中包含来自左侧操作数的元素,然后是来自右侧操作数的元素。但不同的是,在 ++:() 中,右操作数决定了结果集合的类型,而不是左操作数。
Method Definition – def ++:[B >: A, That](that: collection.Traversable[B])
Returns – A new stack which contains all elements of this stack followed by all elements of traversable.
示例 #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 stack
val q1 = Stack(1, 2, 3, 4, 5)
val q2 = Stack(11, 12, 13, 14, 15)
// Applying ++() method
val result = q1.++:(q2)
// Display output
print(result)
}
}
输出:
Stack(11, 12, 13, 14, 15, 1, 2, 3, 4, 5)
示例 #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, 2, 3)
val q2 = Stack("for", "geeks")
// Applying ++() method
val result = q1 ++: q2
// Display output
print(result)
}
}
输出:
Stack(1, 2, 3, for, geeks)