Método Scala Queue find() con ejemplo

El método find() se utiliza para devolver un elemento que satisface un predicado dado en la cola.

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 Queue  
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating queues 
        val q1 = Queue(1, 3, 2, 7, 6, 5) 
          
        // Print the queue
        println(q1)
          
        // Applying find method 
        val result = q1.find(x => {x % 7 == 0}) 
          
        // Displays output 
        print("Element divisible by 7: " + result)
    } 
} 
Producción:

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

Ejemplo #2:

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

Queue(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 *