Método Scala Stack find() con ejemplo

En Scala Stack class, el método find() se utiliza para devolver un elemento que satisface un predicado dado en la pila.

Definición del método: def find(p: (A) => Boolean): Opción[A]

Tipo de retorno: Devuelve el primer elemento que satisface un predicado dado si está presente o devuelve Ninguno.

Ejemplo 1:

// Scala program of find() 
// method 
  
// Import Stack 
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating stack  
        val s1 = Stack(1, 3, 2, 7, 6, 5)  
          
        // Print the stack
        println(s1)
            
        // Applying find method  
        val result = s1.find(x => {x % 7 == 0}) 
          
        // Display output
        println("Element divisible by 7: " + result)
    } 
} 
Producción:

Stack(1, 3, 2, 7, 6, 5)
Element divisible by 7: Some(7)

Ejemplo #2:

// Scala program of find() 
// method 
  
// Import Stack 
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating stack  
        val s1 = Stack(1, 3, 2, 7, 6, 5)  
          
        // Print the stack
        println(s1)
            
        // Applying find method  
        val result = s1.find(x => {x % 10 == 0}) 
          
        // Display output
        println("Element divisible by 10: " + result)
    } 
} 
Producción:

Stack(1, 3, 2, 7, 6, 5)
Element divisible by 10: None

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *