Scala SortedSet diff()方法及示例
diff() 方法用于计算一个排序集和另一个排序集的差异。
方法定义:def diff(that: SortedSet[A]):SortedSet[A]
返回类型。它返回一个排序集,即两个排序集的差值。
例子 #1:
// Scala program of diff()
// method
import scala.collection.immutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating SortedSets
val s1 = SortedSet(1, 2, 3, 4, 5)
val s2 = SortedSet(1, 2, 3)
// Applying diff method
val s3 = s1.diff(s2)
// Displays output
for(elem <- s3)
println(elem)
}
}
输出。
4
5
例子#2。
// Scala program of diff()
// method
import scala.collection.immutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating SortedSets
val s1 = SortedSet(1, 2, 3, 4, 5)
val s2 = SortedSet(6, 2, 7, 8)
// Applying diff method
val s3 = s1.diff(s2)
// Displays output
for(elem <- s3)
println(elem)
}
}
输出。
1
3
4
5
极客教程