En Scala TreeSet class
, el método apply() se utiliza para verificar si algún elemento está presente en el TreeSet o no.
Definición del método: def apply(elem: A): booleano
Tipo de retorno: Devuelve verdadero si el elemento dado está presente en el TreeSet o devuelve falso.
Ejemplo 1:
// Scala program of apply() // method // Import TreeSet import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet(2, 1, 3, 4, 5) // Print the TreeSet println(t1) // Applying apply() method val result = t1.apply(3) // Displays output println("TreeSet contains '3': " + result) } }
Producción:
TreeSet(1, 2, 3, 4, 5) TreeSet contains '3': true
Ejemplo #2:
// Scala program of apply() // method // Import TreeSet import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet(2, 1, 3, 4, 5) // Print the TreeSet println(t1) // Applying apply() method val result = t1.apply(0) // Displays output println("TreeSet contains '0': " + result) } }
Producción:
TreeSet(1, 2, 3, 4, 5) TreeSet contains '0': false
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