Scala Queue :+() 方法示例
:+()方法用于返回一个新队列,该队列在给定队列的后面添加了一个元素。
Method Definition: def:+[B >: A](elem: B): Queue[B]
Return Type: It returns a new queue with an element added at the back of the given queue.
示例 #1:
// Scala program of :+()
// method
// Import Queue
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a queue
val q1 = Queue(1, 2, 3, 4, 5)
// Applying :+() method
val res = q1.:+(10)
// Display output
print(res)
}
}
输出:
Queue(1, 2, 3, 4, 5, 10)
示例 #2:
// Scala program of :+()
// method
// Import Queue
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a queue
val q1 = Queue("geeks", "for")
// Applying :+() method
val res = q1.:+("geeks")
// Display output
print(res)
}
}
输出:
Queue(geeks, for, geeks)