原文: https://beginnersbook.com/2013/12/java-arraylist-isempty-method-example/
java.util.ArrayList类的isEmpty()方法用于检查列表是否为空。此方法返回一个布尔值。
public boolean isEmpty()
如果列表为空则返回true,否则返回false。
例
package beginnersbook.com;import java.util.ArrayList;public class IsEmptyExample {public static void main(String args[]) {//ArrayList of Integer TypeArrayList<Integer> al = new ArrayList<Integer>();//Checking whether the list is emptySystem.out.println("Is ArrayList Empty: "+al.isEmpty());//Adding Integer elementsal.add(1);al.add(88);al.add(9);al.add(17);//Again checking for isEmptySystem.out.println("Is ArrayList Empty: "+al.isEmpty());//Displaying elements of the listfor (Integer num: al) {System.out.println(num);}}}
输出:
Is ArrayList Empty: trueIs ArrayList Empty: false188917
