신 호 량 실례
3037 단어 자바
package cn.hc.sort.thread;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Semaphore;
/**
*
* Created by yhc on 2015/5/5.
*/
public class SemaphoreTest {
private static class Connection {
private int id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
private static class Pool {
private List idlePool = new ArrayList(32);
private List usedPool = new ArrayList(32);
private Semaphore semaphore=new Semaphore(32);
public void init() {
//
System.out.println(" ...");
for (int i = 0; i < 32; i++) {
Connection connection=new Connection();
connection.setId(i);
idlePool.add(connection);
}
}
/****
*
* @return
*/
public Connection get(){
try{
System.out.println(" , :"+semaphore.availablePermits());
semaphore.acquire();
Connection connection= idlePool.remove(0);
usedPool.add(connection);
System.out.println(" ,id="+connection.getId());
return connection;
}catch(Exception e){
e.printStackTrace();
}
return null;
}
/**
*
* @param connection
*/
public void release(Connection connection){
try{
System.out.println(" , :"+semaphore.availablePermits());
usedPool.remove(connection);
idlePool.add(connection);
System.out.println(" ,id="+connection.getId());
}catch (Exception e){
e.printStackTrace();
}finally {
semaphore.release();
}
}
}
public static void main(String[] args) {
SemaphoreTest semaphoreTest=new SemaphoreTest();
final Pool pool=new SemaphoreTest.Pool();
pool.init();
for (int i = 0; i < 100; i++) {
Thread thread=new Thread(new Runnable() {
@Override
public void run() {
Connection connection = pool.get();
//TODO , ...
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}finally {
//
pool.release(connection);
}
}
});
thread.start();
}
System.out.println("End");
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.