The List.isEmpty() method in Java collection class is used to determine whether the collection object is empty. If it is empty, it returns true, otherwise it returns false.
Syntax:
isEmpty()
Application:
This example uses the implementation class ArrayList of the List interface to initialize a list object list, add 4 elements to the list, and then call The isEmpty method determines whether the list object is empty and outputs the determination result, then executes the clear method to remove all elements from the list, and finally executes the isEmpty method again to determine whether the list object is empty and outputs the determination result.
The code is as follows:
public static void main(String[] args){ List<String>list = new ArrayList<String>(); list.add("保护环境"); //向列表中添加数据 list.add("从我做起"); //向列表中添加数据 list.add("爱护地球"); //向列表中添加数据 list.add("从我做起"); //向列表中添加数据 boolean empty = list.isEmpty(); if(empty){ System.out.println("该列表为空"); }else{ System.out.println("该列表不为空"); } list.clear(); //从列表中移除所有元素 System.out.println("执行clear方法后"); empty = list.isEmpty(); if(empty){ System.out.println("该列表为空"); }else{ System.out.println("该列表不为空"); } }
The running results are as follows:
该列表不为空 执行clear方法后 该列表为空
Recommended tutorial: java quick start
The above is the detailed content of Java determines whether a collection object is empty. For more information, please follow other related articles on the PHP Chinese website!