在 Scala TreeSet class
,则使用equals()方法检查两个TreeSet是否包含完全相同的元素。
函数定义: def equals(o: Any): Boolean
返回类型: It returns true if both the TreeSets are equal or else returns false.
范例1:
// Scala program of equals()
// method
// Import TreeSet
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating TreeSets
val t1 = TreeSet(1, 3, 2, 7, 6, 5)
val t2 = TreeSet(1, 3, 2, 7, 6, 5)
// Print the TreeSets
println("t1: " + t1)
println("t2: " + t2)
// Applying equals() method
val result = t1.equals(t2)
// Displays output
println("Both the TreeSets are equal: " + result)
}
}
输出:
t1: TreeSet(1, 2, 3, 5, 6, 7) t2: TreeSet(1, 2, 3, 5, 6, 7) Both the TreeSets are equal: true
范例2:
// Scala program of equals()
// method
// Import TreeSet
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating TreeSets
val t1 = TreeSet(1, 3, 2, 7, 6, 5)
val t2 = TreeSet(3, 2, 7, 6, 5)
// Print the TreeSets
println("t1: " + t1)
println("t2: " + t2)
// Applying equals() method
val result = t1.equals(t2)
// Displays output
println("Both the TreeSets are equal: " + result)
}
}
输出:
t1: TreeSet(1, 2, 3, 5, 6, 7) t2: TreeSet(2, 3, 5, 6, 7) Both the TreeSets are equal: false
相关用法
- Scala TreeSet -()用法及代码示例
- Scala TreeSet min()用法及代码示例
- Scala TreeSet &()用法及代码示例
- Scala TreeSet &~()用法及代码示例
- Scala TreeSet last()用法及代码示例
- Scala TreeSet map()用法及代码示例
- Scala TreeSet take()用法及代码示例
- Scala TreeSet max()用法及代码示例
- Scala TreeSet contains()用法及代码示例
- Scala TreeSet ++()用法及代码示例
- Scala TreeSet +()用法及代码示例
- Scala TreeSet sum()用法及代码示例
- Scala TreeSet toMap()用法及代码示例
- Scala TreeSet size()用法及代码示例
- Scala TreeSet takeRight()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Scala TreeSet equals() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。