阅读量:0
在Java中,判断一个Map是否为空有多种方法。以下是其中一种常用的方法:
- 使用Map的isEmpty()方法:
Map map = new HashMap<>(); if (map.isEmpty()) { System.out.println("Map is empty"); } else { System.out.println("Map is not empty"); }
- 使用Map的size()方法:
Map map = new HashMap<>(); if (map.size() == 0) { System.out.println("Map is empty"); } else { System.out.println("Map is not empty"); }
这两种方法都可以用来判断Map是否为空,根据需要选择其中一种即可。