isEmpty()方法用于检查给定的Map是否为空。
函数定义: def isEmpty: Boolean
返回类型: It returns true if the stated map is empty else returns false.
范例1:
// Scala program of isEmpty()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating map
val m1 = Map(3 -> "geeks", 1 -> "for", 2 -> "cs", 3 -> "geeks")
// Applying isEmpty method
val result = m1.isEmpty
// Displays output
println(result)
}
}
输出:
false
范例2:
// Scala program of isEmpty()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating map
val m1 = Map()
// Applying isEmpty method
val result = m1.isEmpty
// Displays output
println(result)
}
}
输出:
true
相关用法
- Scala Set isEmpty()用法及代码示例
- Scala SortedMap isEmpty()用法及代码示例
- Scala Queue isEmpty()用法及代码示例
- Scala SortedSet isEmpty()用法及代码示例
- Scala TreeSet isEmpty()用法及代码示例
- Scala ListSet isEmpty()用法及代码示例
- Scala Set ++()用法及代码示例
- Scala Int to(end: Int)用法及代码示例
- Scala Set contains()用法及代码示例
- Scala Map get()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala Map isEmpty() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。