Java PriorityQueue offer()方法

java.util.PriorityQueue.offer() 方法用于将指定的元素插入队列。

1 语法

public boolean offer(E e)

2 参数

e :要添加的元素。

3 返回值

方法调用返回true(由Queue.offer(E)指定)。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.PriorityQueue.offer()方法的例子
 */
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("Initial priority queue values are: "+ prq);

        // add using offer() function call
        prq.offer(122);

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

输出结果为:

Initial priority queue values are: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Priority queue values after addition: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 122]

热门文章

优秀文章