Scala Queue dropRight()方法及示例
dropRight() 方法用于删除队列中最后的’n’个元素。
方法定义: def dropRight(n: Int):Queue[A]
返回类型。它返回一个新的队列,该队列由除了最后’n’个元素以外的所有元素组成。
例子 #1:
// Scala program of dropRight()
// 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 dropRight method
val result = q1.dropRight(2)
// Displays output
print("Queue after dropRight(2) method: " + result)
}
}
输出。
Queue(1, 2, 3, 4, 5)
Queue after dropRight(2) method: Queue(1, 2, 3)
例子#2。
// Scala program of dropRight()
// 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 dropRight method
val result = q1.dropRight(3)
// Displays output
print("Queue after dropRight(3) method: " + result)
}
}
输出。
Queue(1, 2, 3, 4, 5)
Queue after dropRight(3) method: Queue(1, 2)
极客教程