當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala Queue equals()用法及代碼示例


equals()方法用於檢查兩個隊列是否由相同順序的相同元素組成。

函數定義: def equals(o: Any): Boolean

返回類型: It returns true if both the queues are same or else returns false.



範例1:

// Scala program of equals()  
// method  
  
// Import Queue   
import scala.collection.mutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating queues  
        val q1 = Queue(1, 3, 2, 7, 6, 5)  
          
        val q2 = Queue(1, 3, 2, 7, 6, 5)  
          
        // Print the queue 
        println("Queue_1: " + q1) 
          
        println("Queue_2: " + q2) 
          
        // Applying equals method  
        val result = q1.equals(q2)  
          
        // Displays output  
        print("Queue_1 = Queue_2: " + result) 
    }  
} 
輸出:
Queue_1: Queue(1, 3, 2, 7, 6, 5)
Queue_2: Queue(1, 3, 2, 7, 6, 5)
Queue_1 = Queue_2: true

範例2:

// Scala program of equals()  
// method  
  
// Import Queue   
import scala.collection.mutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating queues  
        val q1 = Queue(1, 3, 2, 7, 6, 5)  
          
        val q2 = Queue(5, 3, 2, 7, 6, 1)  
          
        // Print the queue 
        println("Queue_1: " + q1) 
          
        println("Queue_2: " + q2) 
          
        // Applying equals method  
        val result = q1.equals(q2)  
          
        // Displays output  
        print("Queue_1 = Queue_2: " + result) 
    }  
} 
輸出:
Queue_1: Queue(1, 3, 2, 7, 6, 5)
Queue_2: Queue(5, 3, 2, 7, 6, 1)
Queue_1 = Queue_2: false


相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Scala Queue equals() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。