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


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


java.util.concurrent.LinkedTransferQueue.remove()方法是Java中的內置函數,用於刪除元素(如果此隊列中存在)。

用法:

LinkedTransferQueue.remove(Object o)

參數:該函數接受單個參數,即要刪除的對象。


返回值:成功刪除對象後,該函數將返回true布爾值,否則返回false。

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

示例1:隊列中存在要刪除的元素。

// Java Program Demonstrate remove() 
// method of LinkedTransferQueue  
  
import java.util.concurrent.LinkedTransferQueue; 
  
class LinkedTransferQueueRemoveExample1 { 
    public static void main(String[] args) 
    { 
        // Initializing the queue 
        LinkedTransferQueue<Integer> queue =  
              new LinkedTransferQueue<Integer>(); 
  
        // Adding elements to this queue 
        for (int i = 1; i <= 5; i++) 
            queue.add(i); 
  
        // Printing the elements of the queue 
        System.out.println("The elements in the queue are:"); 
        for (Integer i : queue) 
            System.out.print(i + " "); 
  
        // remove() method will remove the specified 
        // element from the queue 
        queue.remove(1); 
        queue.remove(5); 
  
        // Printing the elements of the queue 
        System.out.println("\nRemaining elements in queue : "); 
        for (Integer i : queue) 
            System.out.print(i + " "); 
    } 
}
輸出:
The elements in the queue are:
1 2 3 4 5 
Remaining elements in queue : 
2 3 4

示例2:隊列中不存在要刪除的元素。

// Java Program Demonstrate remove() 
// method of LinkedTransferQueue  
  
import java.util.concurrent.LinkedTransferQueue; 
  
class LinkedTransferQueueRemoveExample2 { 
    public static void main(String[] args) 
    { 
        // Initializing the queue 
        LinkedTransferQueue<Integer> queue =  
                    new LinkedTransferQueue<Integer>(); 
  
        // Adding elements to this queue 
        for (int i = 10; i <= 15; i++) 
            queue.add(i); 
  
        // Printing the elements of the queue 
        System.out.println("The elements in the queue are:"); 
        for (Integer i : queue) 
            System.out.print(i + " "); 
  
        // remove() method will remove the specified 
        // element from the queue 
        queue.remove(1); 
        queue.remove(5); 
  
        // Printing the elements of the queue 
        System.out.println("\nRemaining elements in queue : "); 
        for (Integer i : queue) 
            System.out.print(i + " "); 
    } 
}
輸出:
The elements in the queue are:
10 11 12 13 14 15 
Remaining elements in queue : 
10 11 12 13 14 15

參考: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/LinkedTransferQueue.html#remove(java.lang.Object)



相關用法


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