Scala Mutable SortedSet tail() 方法
在 Scala 可变集合中, tail()方法用于返回一个由除 SortedSet 的第一个元素之外的所有元素组成的 SortedSet。
Method Definition: def tail: SortedSet[A]
Return Type: It returns a SortedSet consisting of all the elements except the first element of the SortedSet.
示例 #1:
// Scala program of tail()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(8, 7, 6, 2)
// Applying tail method
val result = s1.tail
// Display output
println(result)
}
}
输出:
TreeSet(6, 7, 8)
示例 #2:
// Scala program of tail()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(4, 1, 23, 43)
// Applying tail method
val result = s1.tail
// Display output
println(result)
}
}
输出:
TreeSet(4, 23, 43)