Scala Queue exists()方法及示例
exists() 方法用于检查队列中的任何元素是否存在一个谓词。
方法定义: def exists(p: (A) => Boolean):Boolean
返回类型。如果谓词对队列中的任何元素成立,则返回真,否则返回假。
例子 #1:
// Scala program of exists()
// 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 exists method
val result = q1.exists(x => {x % 7 == 0})
// Displays output
print("Element divisible by 7 exists: " + result)
}
}
输出。
Queue(1, 3, 2, 7, 6, 5)
Element divisible by 7 exists: true
例子#2。
// Scala program of exists()
// 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 exists method
val result = q1.exists(x => {x == 10})
// Displays output
print("Element 10 exists: " + result)
}
}
输出。
Queue(1, 3, 2, 7, 6, 5)
Element 10 exists: false
极客教程