在Java中,判斷集合是否為空有幾種方法可以使用:
List<String> list = new ArrayList<>();
if(list.isEmpty()) {
System.out.println("集合為空");
}
Set<Integer> set = new HashSet<>();
if(set.size() == 0) {
System.out.println("集合為空");
}
Map<String, Integer> map = new HashMap<>();
if(map == null || map.isEmpty()) {
System.out.println("集合為空");
}
這些方法都可以用來判斷集合是否為空,選擇合適的方法取決于具體的場景和需求。