List of usage examples for java.util.concurrent ArrayBlockingQueue toArray
@SuppressWarnings("unchecked") public <T> T[] toArray(T[] a)
From source file:Main.java
public static void main(String[] argv) throws Exception { int capacity = 10; ArrayBlockingQueue<Integer> queue = new ArrayBlockingQueue<Integer>(capacity); for (int i = 0; i < 10; i++) { queue.add(i);/*w ww . ja va2 s .c o m*/ } System.out.println(Arrays.toString(queue.toArray(new Integer[queue.size()]))); }