當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java ArrayList isEmpty()用法及代碼示例


Java中ArrayList的isEmpty()方法用於檢查列表是否為空。如果列表不包含任何元素,則返回true;否則,如果列表包含任何元素,則返回false。

用法:

list_name.isEmpty()

參數:它不接受任何參數。


返回:如果列表list_name沒有元素,則返回True,否則返回false。返回類型為boolean數據類型。

錯誤和異常:此方法沒有錯誤或異常。

演示isEmpty()在Java中工作的程序:

// Java code to demonstrate the working of 
// isEmpty() method in ArrayList 
  
// for ArrayList functions 
import java.util.ArrayList; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // creating an Empty Integer ArrayList 
        ArrayList<Integer> arr = new ArrayList<Integer>(10); 
  
        // check if the list is empty or not using fucntion 
        boolean ans = arr.isEmpty(); 
        if (ans == true) 
            System.out.println("The ArrayList is empty"); 
        else
            System.out.println("The ArrayList is not empty"); 
  
        // addition of a element to the ArrayList 
        arr.add(1); 
  
        // check if the list is empty or not 
        ans = arr.isEmpty(); 
        if (ans == true) 
            System.out.println("The ArrayList is empty"); 
        else
            System.out.println("The ArrayList is not empty"); 
    } 
}

輸出:

The ArrayList is empty
The ArrayList is not empty


相關用法


注:本文由純淨天空篩選整理自Striver大神的英文原創作品 ArrayList isEmpty() in Java with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。