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


Java AbstractQueue remove()用法及代碼示例


AbstractQueue的remove()方法返回並刪除此隊列的頭。

用法:

public E remove()

參數:此方法不接受任何參數。


返回:該方法返回隊列的頭部。

異常:如果隊列為空,該函數將引發NoSuchElementException。

以下示例程序旨在說明remove()方法:

程序1:

// Java program to illustrate the 
// AbstractQueue remove() method 
import java.util.*; 
import java.util.concurrent.LinkedBlockingQueue; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
        // Creating object of AbstractQueue<Integer> 
        AbstractQueue<Integer> 
            AQ1 = new LinkedBlockingQueue<Integer>(); 
  
        // Populating AQ1 
        AQ1.add(10); 
        AQ1.add(20); 
        AQ1.add(30); 
        AQ1.add(40); 
        AQ1.add(50); 
  
        // print AQ 
        System.out.println("AbstractQueue1 contains:" + AQ1); 
  
        // retrieves the head 
        int head = AQ1.remove(); 
        System.out.println("head:" + head); 
  
        // print AQ 
        System.out.println("AbstractQueue1 after removal of head:" + AQ1); 
    } 
}
輸出:
AbstractQueue1 contains:[10, 20, 30, 40, 50]
head:10
AbstractQueue1 after removal of head:[20, 30, 40, 50]

程序2:

// Java program to illustrate the 
// AbstractQueue element() method 
// NoSuchElementException 
// Java program to illustrate the 
// AbstractQueue remove() method 
import java.util.*; 
import java.util.concurrent.LinkedBlockingQueue; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
        try { 
            // Creating object of AbstractQueue<Integer> 
            AbstractQueue<Integer> 
                AQ1 = new LinkedBlockingQueue<Integer>(); 
  
            // Populating AQ1 
            AQ1.add(10); 
  
            // print AQ 
            System.out.println("AbstractQueue1 contains:" + AQ1); 
  
            // retrieves the head 
            int head = AQ1.remove(); 
            System.out.println("head:" + head); 
  
            // retrieves the head again 
            head = AQ1.remove(); 
            System.out.println("head:" + head); 
        } 
        catch (Exception e) { 
            System.out.println("Exception:" + e); 
        } 
    } 
}
輸出:
AbstractQueue1 contains:[10]
head:10
Exception:java.util.NoSuchElementException

參考: https://docs.oracle.com/javase/8/docs/api/java/util/AbstractQueue.html#remove-



相關用法


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