java集合框架中常用的_Java中常用的集合框架

BlockingQueue

A线程可以知道b线程的存在

是一个接口并非一个具体实现:

ArrayBlockingQueue

ArrayBlockingQueue的内部元素都放置在一个对象数组中:final Object[] items;

Offer():当队列已经满了,会立即返回false

Put():如果队列满了会一直等待

Pool():弹出元素,如果为空返回null

Take():弹出元素,如果为空等待到有元素即可。

Take方法:public E take() throws InterruptedException {

final ReentrantLock lock = this.lock;

lock.lockInterruptibly();

try {

while (count == 0)

notEmpty.await();

return extract();

} finally {

lock.unlock();

}

}

private void insert(E x) {

items[putIndex] = x;

putIndex = inc(putIndex);

++count;

notEmpty.signal();

}

Put方法:public void put(E e) throws InterruptedException {

checkNotNull(e);

final ReentrantLock lock = this.lock;

lock.lockInterruptibly();

try {

while (count == items.length)

notFull.await();

insert(e);

} finally {

lock.unlock();

}

}/**

* Extracts element at current take position, advances, and signals.

* Call only when holding lock.

*/

private E extract() {

final Object[] items = this.items;

E x = this.cast(items[takeIndex]);

items[takeIndex] = null;

takeIndex = inc(takeIndex);

--count;

notFull.signal();

return x;

}

LinkedBlockingQueue(锁分离)两把不同的锁

/** Lock held by take, poll, etc */

private final ReentrantLock takeLock = new ReentrantLock();

/** Wait queue for waiting takes */

private final Condition notEmpty = takeLock.newCondition();

/** Lock held by put, offer, etc */

private final ReentrantLock putLock = new ReentrantLock();

/** Wait queue for waiting puts */

private final Condition notFull = putLock.newCondition();Take函数

public E take() throws InterruptedException {

E x;

int c = -1;

final AtomicInteger count = this.count;

final ReentrantLock takeLock = this.takeLock;

takeLock.lockInterruptibly();//不能有两个线程同时取数据

try {

while (count.get() == 0) {//如果没有数据,一直等待(因为是lockInterruptibly,可中断)

notEmpty.await();

}

x = dequeue();//取得第一个数据

c = count.getAndDecrement();//数量-1,原子操作,因为会和put同时访问count。

if (c > 1)

notEmpty.signal();//通知其他take操作

} finally {

takeLock.unlock();//释放锁

}

if (c == capacity)

signalNotFull();//通知put操作,已有空余空间

return x;

}Put函数

public void put(E e) throws InterruptedException {

if (e == null) throw new NullPointerException();

// Note: convention in all put/take/etc is to preset local var

// holding count negative to indicate failure unless set.

int c = -1;

Node node = new Node(e);

final ReentrantLock putLock = this.putLock;

final AtomicInteger count = this.count;

putLock.lockInterruptibly();//上锁不能有两个线程同时进行put函数

try {

/*

* Note that count is used in wait guard even though it is

* not protected by lock. This works because count can

* only decrease at this point (all other puts are shut

* out by lock), and we (or some other waiting put) are

* signalled if it ever changes from capacity. Similarly

* for all other uses of count in other wait guards.

*/

while (count.get() == capacity) {//当队列已经满了以后,等待

notFull.await();

}

enqueue(node);//插入数据

c = count.getAndIncrement();//更新总数

if (c + 1 

notFull.signal();//有足够的空间,通知其他线程

} finally {

putLock.unlock();//释放锁

}

if (c == 0)

signalNotEmpty();//释放成功后,通知take函数取数据

}

并发下的ArrayList

当ArrayList在扩容的时候,内部一致性被破坏,由于没有锁的保护,另外一个线程访问不到不一致的内部状态,导致出现越界问题。

还会出现多个线程同时对同一位置进行赋值。

concurrentlinkedqueue

concurrentlinkedqueue:

高并发环境中可以说是最好的队列,也可以看做是一个线程安全的linkedList。

CopyOnWriteArrayList

性能很好的读写list,在读写的时候任何时候都不加锁;只有在写写的时候需要同步等待。

当写操作的时候,进行一次自我复制。对原有的数据进行一次复制,将修改的内容写入副本修改完之后,将副本替换原来的数据。

PriorityQueue

PriorityQueue也叫优先队列,所谓优先队列指的就是每次从优先队列中取出来的元素要么是最大值(最大堆),要么是最小值(最小堆)。我们知道,队列是一种先进先出的数据结构,每次从队头出队(移走一个元素),从队尾插入一个元素(入队)。

ArrayDeque(一种双端队列)

原文:http://blog.51cto.com/qinbin/2068856

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值