java.util.PriorityQueue.size() 方法返回优先级队列中的元素总数。
语法
public int size()
参数
无需参数。
返回值
返回优先级队列中的元素数量。
异常
无示例:
在下面的示例中,java.util.PriorityQueue.size()方法用于查找优先级队列中的元素数量。
import java.util.*;
public class MyClass {
public static void main(String[] args) {
//创建优先级队列
PriorityQueue<Integer> PQueue = new PriorityQueue<Integer>();
//填充优先级队列
PQueue.add(10);
PQueue.add(20);
PQueue.add(30);
PQueue.add(40);
PQueue.add(50);
System.out.println("Size of PQueue: "+ PQueue.size());
//在优先级队列中再添加一个元素
PQueue.add(40);
System.out.println("Now, Size of PQueue: "+ PQueue.size());
}
}
上述代码的输出将是:
Size of PQueue: 5
Now, Size of PQueue: 6