Scala Set isEmpty()方法及示例
isEmpty() 方法被用来测试集合是否为空。
方法定义: def isEmpty:Boolean
返回类型。如果集合是空的,返回真,否则返回假。
例子 #1:
// Scala program of isEmpty()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set(1, 2, 3, 4, 5)
// Applying isEmpty method
val result = s1.isEmpty
// Display output
println(result)
}
}
输出。
false
例子#2。
// Scala program of isEmpty()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set()
// Applying isEmpty method
val result = s1.isEmpty
// Display output
println(result)
}
}
输出。
true
极客教程