Scala Queue find()方法及示例
find() 方法是用来返回队列中满足给定谓词的元素的。
方法定义: def find(p: (A) => Boolean):Option[A]
返回类型。如果存在的话,它返回满足给定谓词的第一个元素,否则就返回无。
例子 #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)
}
}
输出。
Queue(1, 3, 2, 7, 6, 5)
Element divisible by 7: Some(7)
例子#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)
}
}
输出。
Queue(1, 3, 2, 7, 6, 5)
Element divisible by 10: None
极客教程