带有示例的 Scala SortedSet init() 方法
init()方法用于查找 SortedSet 中除最后一个之外的所有元素。
Method Definition: def init: SortedSet[A]
Return Type: It returns all the elements of the SortedSet except the last one.
示例 #1:
// Scala program of init()
// method
import scala.collection.immutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(1, 2, 3, 4, 5)
// Applying init method
val result = s1.init
// Display output
println(result)
}
}
输出:
TreeSet(1, 2, 3, 4)
示例 #2:
// Scala program of init()
// method
import scala.collection.immutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(16, 22, 3, 41, 51)
// Applying init method
val result = s1.init
// Display output
println(result)
}
}
输出:
TreeSet(3, 16, 22, 41)