共计 388 个字符,预计需要花费 1 分钟才能阅读完成。
在 Java 中,可以使用以下方式来判断一个列表是否为空:
- 使用
size()
方法:通过调用列表的size()
方法,如果返回值为 0,则表示列表为空。例如:
List<Integer> list = new ArrayList<>();
if (list.size() == 0) {System.out.println(" 列表为空 ");
}
- 使用
isEmpty()
方法:通过调用列表的isEmpty()
方法,如果返回值为 true,则表示列表为空。例如:
List<Integer> list = new ArrayList<>();
if (list.isEmpty()) {System.out.println(" 列表为空 ");
}
注意:以上方法适用于 List
接口的实现类,如 ArrayList
、LinkedList
等。如果使用其他类型的列表,可以根据具体的实现类来查找对应的判断空的方法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完