Java PriorityQueue clear()方法

java.util.PriorityQueue.clear() 方法用于删除队列的所有元素。

1 语法

public void clear()	

2 参数

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.PriorityQueue.clear()方法的例子
 */
import java.util.*;

public class Demo {
    public static void main(String args[]) {

        // create priority queue
        PriorityQueue < Integer >  prq = new PriorityQueue < Integer > ();

        // insert values in the queue
        for ( int i = 0; i  <  10; i++ ) {
            prq.add (new Integer (i)) ;
        }
        System.out.println("Priority queue values are: " + prq);

        // clear the queue
        prq.clear();

        System.out.println("Priority queue values after clear: " + prq);
    }
}

输出结果为:

Priority queue values are: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Priority queue values after clear: []

热门文章

优秀文章