在Java中,判斷一個Map是否為空有多種方法。以下是其中一種常用的方法:
Map<String, String> map = new HashMap<>();
if (map.isEmpty()) {
System.out.println("Map is empty");
} else {
System.out.println("Map is not empty");
}
Map<String, String> map = new HashMap<>();
if (map.size() == 0) {
System.out.println("Map is empty");
} else {
System.out.println("Map is not empty");
}
這兩種方法都可以用來判斷Map是否為空,根據需要選擇其中一種即可。