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


Java PriorityQueue size()用法及代碼示例


Java.util.PriorityQueue.size()方法用於獲取PriorityQueue的大小或PriorityQueue中存在的元素數。

用法:

Priority_Queue.size()

參數:此方法不帶任何參數。


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

以下示例程序旨在說明Java.util.PriorityQueue.size()方法:
示例1:

// Java code to illustrate size() 
import java.util.*; 
  
public class PriorityQueueDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty PriorityQueue 
        PriorityQueue<String> queue = new PriorityQueue<String>(); 
  
        // 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

示例2:

// Java code to illustrate size() 
import java.util.*; 
  
public class PriorityQueueDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty PriorityQueue 
        PriorityQueue<Integer> queue = new PriorityQueue<Integer>(); 
  
        // 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


相關用法


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