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 queue =
new LinkedTransferQueue();
// 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 queue =
new LinkedTransferQueue();
// 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: Java Java.lang.Object)