天天看点

ThreadGroup实现多线程

//线程池

public class ThreadPool extends ThreadGroup {

    private boolean isClosed = false;  //线程池是否关闭   

    private LinkedList<Runnable> workQueue;      //工作队列  

    private static int threadPoolID = 1;  //线程池的id  

    public ThreadPool(int poolSize) {  //poolSize 表示线程池中的工作线程的数量  

        super(threadPoolID + "");      //指定ThreadGroup的名称  

        setDaemon(true);               //继承到的方法,设置是否守护线程池  

        workQueue = new LinkedList<Runnable>();  //创建工作队列  

        for(int i = 0; i < poolSize; i++) {  

            new WorkThread(i).start();   //创建并启动工作线程,线程池数量是多少就创建多少个工作线程  

        }  

    } 

    public synchronized void execute(Runnable task) {  

        if(isClosed) {  

            throw new IllegalStateException();  

        }  

        if(task != null) {  

            workQueue.add(task);//向队列中加入一个任务  

            notify();           //唤醒一个正在getTask()方法中待任务的工作线程  

        }  

    }

    private synchronized Runnable getTask(int threadid) throws InterruptedException {  

        while(workQueue.size() == 0) {  

            if(isClosed) return null;  

            //System.out.println("工作线程"+threadid+"等待任务...");  

            wait();             //如果工作队列中没有任务,就等待任务  

        }  

            //System.out.println("工作线程"+threadid+"开始执行任务...");  

        return (Runnable) workQueue.removeFirst(); //反回队列中第一个元素,并从队列中删除  

    }

    public synchronized void closePool() {  

        if(! isClosed) {  

            waitFinish();        //等待工作线程执行完毕  

            isClosed = true;  

            workQueue.clear();  //清空工作队列  

            interrupt();        //中断线程池中的所有的工作线程,此方法继承自ThreadGroup类  

        }  

    }

    public void waitFinish() {  

        synchronized (this) {  

            isClosed = true;  

             //唤醒所有还在getTask()方法中等待任务的工作线程  

            notifyAll();   

        }  

        //activeCount() 返回该线程组中活动线程的估计值。  

        Thread[] threads = new Thread[activeCount()];

//enumerate()方法继承自ThreadGroup类,根据活动线程的估计值获得线程组中当前所有活动的工作线程 

        int count = enumerate(threads);

        for(int i =0; i < count; i++) { //等待所有工作线程结束  

            try {  

                threads[i].join();  //等待工作线程结束  

            }catch(InterruptedException ex) {  

                ex.printStackTrace();  

            }  

        }  

    }

    private class WorkThread extends Thread {  

        private int id;  

        public WorkThread(int id) {  

            //父类构造方法,将线程加入到当前ThreadPool线程组中  

            super(ThreadPool.this,id+"");  

            this.id =id;  

        }  

        public void run() {  

            while(! isInterrupted()) {  //isInterrupted()方法继承自Thread类,判断线程是否被中断  

                Runnable task = null;  

                try {  

                    task = getTask(id);     //取出任务  

                }catch(InterruptedException ex) {  

                    ex.printStackTrace();  

                }  

                //如果getTask()返回null或者线程执行getTask()时被中断,则结束此线程  

                if(task == null) return;  

                try {  

                    task.run();  //运行任务  

                }catch(Throwable t) {  

                    t.printStackTrace();  

                }  

            }//  end while  

        }//  end run  

    }// end workThread  

}

//调用

ThreadPool threadPool = new ThreadPool(15);

for(int i = 0; i < 100; i++){

    threadPool.execute(new Runnable(){

        @Override

        public void run(){

            toDo();

        }

    });

   }

threadPool.waitFinish();

threadPool.closePool();

转载于:https://my.oschina.net/u/2619408/blog/878734