diff()方法用於查找兩個隊列之間的差異。它從另一個隊列中刪除一個隊列中存在的元素。
函數定義: def diff[B >: A](that: collection.Seq[B]): Queue[A]
返回類型: It returns a new queue which consists of elements after the difference between the two queues.
範例1:
// Scala program of diff()
// 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)
val q2 = Queue(3, 4, 5)
// Print the queue
println("Queue_1: " + q1)
println("Queue_2: " + q2)
// Applying diff method
val result = q1.diff(q2)
// Displays output
print("(Queue_1 - Queue_2): " + result)
}
}
輸出:
Queue_1: Queue(1, 2, 3, 4, 5) Queue_2: Queue(3, 4, 5) (Queue_1 - Queue_2): Queue(1, 2)
範例2:
// Scala program of diff()
// 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)
val q2 = Queue(3, 4, 5, 6, 7, 8)
// Print the queue
println("Queue_1: " + q1)
println("Queue_2: " + q2)
// Applying diff method
val result = q2.diff(q1)
// Displays output
print("(Queue_2 - Queue_1): " + result)
}
}
輸出:
Queue_1: Queue(1, 2, 3, 4, 5) Queue_2: Queue(3, 4, 5, 6, 7, 8) (Queue_2 - Queue_1): Queue(6, 7, 8)
相關用法
- Scala Set diff()用法及代碼示例
- Scala TreeSet diff()用法及代碼示例
- Scala Stack diff()用法及代碼示例
- Scala SortedSet diff()用法及代碼示例
- Scala Queue min()用法及代碼示例
- Scala Queue ++()用法及代碼示例
- Scala Queue ++:()用法及代碼示例
- Scala Queue sum()用法及代碼示例
- Scala Queue +:()用法及代碼示例
- Scala Queue max()用法及代碼示例
- Scala Queue map()用法及代碼示例
- Scala Queue last()用法及代碼示例
- Scala Queue ++=()用法及代碼示例
- Scala Queue contains()用法及代碼示例
- Scala Queue :+()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Scala Queue diff() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。