1. 程式人生 > >關於Java中Stack、Queue的一些api

關於Java中Stack、Queue的一些api

關於Java中Queue的offer和add方法的區別

API中這樣說到:

add():Inserts the specified element at the tail of this queue. As the queue is unbounded, this method will never throw IllegalStateException or return false.

offer():Inserts the specified element at the tail of this queue. As the queue is unbounded, this method will never return false.

區別:兩者都是往佇列尾部插入元素,不同的時候,當超出佇列界限的時候,add()方法是丟擲異常讓你處理,而offer()方法是直接返回false

關於Java中Stack中isEmpty和empty的區別

 原始碼如下:

public synchronized boolean isEmpty() {
	return elementCount == 0;
}

public synchronized int size() {
	return elementCount;
}
public boolean empty() { 
	return size() == 0;
}

可以看到一個是直接呼叫的了Vector中的同步方法isEmpty,而自己實現的empty是在方法內部又呼叫了Vector的同步方法size。所以其實都是Vector處理的,二者並沒有區別