📜  Java中的PriorityQueue size()方法

📅  最后修改于: 2022-05-13 01:54:59.753000             🧑  作者: Mango

Java中的PriorityQueue size()方法

Java.util.PriorityQueue.size() 方法用于获取 PriorityQueue 的大小或 PriorityQueue 中存在的元素数量。

句法:

Priority_Queue.size()

参数:此方法不带任何参数。

返回值:该方法返回 PriorityQueue 中存在的元素的大小或数量。

下面的程序说明了Java.util.PriorityQueue.size() 方法:
方案一:

// Java code to illustrate size()
import java.util.*;
  
public class PriorityQueueDemo {
    public static void main(String args[])
    {
        // Creating an empty PriorityQueue
        PriorityQueue queue = new PriorityQueue();
  
        // Use add() method to add elements into the Queue
        queue.add("Welcome");
        queue.add("To");
        queue.add("Geeks");
        queue.add("For");
        queue.add("Geeks");
  
        // Displaying the PriorityQueue
        System.out.println("PriorityQueue: " + queue);
  
        // Displaying the size of the PriorityQueue
        System.out.println("The size of the queue is: " + queue.size());
    }
}
输出:
PriorityQueue: [For, Geeks, To, Welcome, Geeks]
The size of the queue is: 5

方案二:

// Java code to illustrate size()
import java.util.*;
  
public class PriorityQueueDemo {
    public static void main(String args[])
    {
        // Creating an empty PriorityQueue
        PriorityQueue queue = new PriorityQueue();
  
        // Use add() method to add elements into the Queue
        queue.add(10);
        queue.add(15);
        queue.add(30);
        queue.add(20);
        queue.add(5);
        queue.add(18);
  
        // Displaying the PriorityQueue
        System.out.println("PriorityQueue: " + queue);
  
        // Displaying the size of the PriorityQueue
        System.out.println("The size of the queue is: " + queue.size());
    }
}
输出:
PriorityQueue: [5, 10, 18, 20, 15, 30]
The size of the queue is: 6