Scala Queue drop()方法及示例
drop() 方法被用来丢弃队列中的第一个’n’元素。
方法定义: def drop(n: Int):Queue[A]
返回类型。它返回一个新的队列,其中有所有的元素,除了第一个’n’的元素。
例子 #1:
// Scala program of drop()
// method
// Import Queue
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating queues
val q1 = Queue(1, 2, 3, 4, 5)
// Print the queue
println(q1)
// Applying drop method
val result = q1.drop(2)
// Displays output
print("Queue after drop(2) method: " + result)
}
}
输出。
Queue(1, 2, 3, 4, 5)
Queue after drop(2) method: Queue(3, 4, 5)
例子#2。
// Scala program of drop()
// method
// Import Queue
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating queues
val q1 = Queue(1, 2, 3, 4, 5)
// Print the queue
println(q1)
// Applying drop method
val result = q1.drop(3)
// Displays output
print("Queue after drop(3) method: " + result)
}
}
输出。
Queue(1, 2, 3, 4, 5)
Queue after drop(3) method: Queue(4, 5)
极客教程