Scala Mutable SortedSet -() 方法
在 Scala 可变集合中,SortedSet -() 方法用于创建一个新的 SortedSet,其中给定元素从 SortedSet 中移除。
Method Definition: def -(elem: A): SortedSet[A]
Return Type: It returns a new SortedSet with a given element removed from the SortedSet.
示例 #1:
// Scala program of -()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(11, 55, 33, 20, 100)
// Applying -() method
val result = s1-(100)
// Display output
print(result)
}
}
输出:
TreeSet(11, 20, 33, 55)
示例 #2:
// Scala program of -()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(43, 23, 12, 41, 1)
// Applying -() method
val result = s1-(1)
// Display output
print(result)
}
}
输出:
TreeSet(12, 23, 41, 43)