📜  Scala Queue drop() 方法示例

📅  最后修改于: 2022-05-13 01:55:22.118000             🧑  作者: Mango

Scala Queue drop() 方法示例

drop()方法用于删除队列的前“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)