En Scala TreeSet class
, el método init() se utiliza para devolver un nuevo TreeSet que consta de todos los elementos excepto el último.
Definición del método: def init: TreeSet[A]
Tipo de retorno: Devuelve un nuevo TreeSet que consta de todos los elementos excepto el último.
Ejemplo 1:
// Scala program of init() // method // Import TreeSet import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet(1, 3, 2, 7, 6, 5) // Print the TreeSet println(t1) // Applying init() method val result = t1.init // Displays output println("Elements of the TreeSet except the last one: " + result) } }
Producción:
TreeSet(1, 2, 3, 5, 6, 7) Elements of the TreeSet except the last one: TreeSet(1, 2, 3, 5, 6)
Ejemplo #2:
// Scala program of init() // method // Import TreeSet import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet(1, 3, 12, 7, 16, 5) // Print the TreeSet println(t1) // Applying init() method val result = t1.init // Displays output println("Elements of the TreeSet except the last one: " + result) } }
Producción:
TreeSet(1, 3, 5, 7, 12, 16) Elements of the TreeSet except the last one: TreeSet(1, 3, 5, 7, 12)
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA