Java SortedMap isEmpty()方法及示例
Java中 SortedMap接口 的 isEmpty() 方法用于检查一个地图是否有任何键和值对的条目。如果没有映射存在,则返回真。
语法
boolean isEmpty()
参数: 该方法没有参数。
返回: 如果地图不包含任何键值映射,该方法返回 True 。
注意 :SortedMap中的isEmpty()方法是继承自Java中的Map接口。
下面的程序展示了int isEmpty()方法的实现。
程序1 :
// Java code to show the implementation of
// isEmpty method in SortedMap interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a SortedMap
SortedMap<String, String> map
= new TreeMap<>();
System.out.println(map);
System.out.println(map.isEmpty());
}
}
输出
{}
true
程序2: 下面的代码显示了isEmpty()的实现。
// Java code to show the implementation of
// isEmpty method in SortedMap interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a SortedMap
SortedMap<String, String> map
= new TreeMap<>();
map.put("1", "One");
map.put("3", "Three");
map.put("5", "Five");
map.put("7", "Seven");
map.put("9", "Ninde");
System.out.println(map);
System.out.println(map.isEmpty());
}
}
输出
{1=One, 3=Three, 5=Five, 7=Seven, 9=Ninde}
false
参考资料: https://docs.oracle.com/javase/6/docs/api/java/util/ArrayList.html#contains(java.lang.Object)