JAVA线程池的简单实现及优先级设置

简介:
我们大家都知道,在处理多线程服务并发时,由于创建线程需要占用很多的系统资源,所以为了避免这些不必要的损耗,通常我们采用线程池来解决这些问题。
  线程池的基本原理是,首先创建并保持一定数量的线程,当需要使用线程时,我们从池中取得线程,再将需要运行的任务交给线程进行处理,当任务完成后再将其释放回池中。
 下面,我给出一个很简单的实现模型,仅供参考。

 ThreadPool.java
package org.loon.framework.util.test;

import java.util.LinkedList;
import java.util.List;

/** *//**
 * <p>
 * Title: LoonFramework
 * </p>
 * <p>
 * Description:
 * </p>
 * <p>
 * Copyright: Copyright (c) 2007
 * </p>
 * <p>
 * Company: LoonFramework
 * </p>
 * 
 * @author chenpeng
 * @email:[email]ceponline@yahoo.com.cn[/email]
 * @version 0.1
 */
public class ThreadPool ...{

    private static ThreadPool instance = null;

    // 优先级低
    public static final int PRIORITY_LOW = 0;

    // 普通
    public static final int PRIORITY_NORMAL = 1;

    // 高
    public static final int PRIORITY_HIGH = 2;

    // 用以保存空闲连接
    private List[] _idxThreads;

    // 关闭
    private boolean _shutdown = false;

    // 线程数量
    private int _threadCount = 0;

    // debug信息是否输出
    private boolean _debug = false;

    /** *//**
     * 返回ThreadPool实例
     * 
     * @return
     */
    public static ThreadPool getInstance() ...{
        if (instance == null) ...{
                    instance = new ThreadPool();
            }
        return instance;
    }

    // 初始化线程list
    private ThreadPool() ...{
        this._idxThreads = new List[] ...{ new LinkedList(), new LinkedList(),
                new LinkedList() };
        this._threadCount=0;
    }

    /** *//**
     * 同步方法,完成任务后将资源放回线程池中
     * @param repool
     */
    protected synchronized void repool(Pooled repool) ...{
        if (this._shutdown) ...{
            if (this._debug) ...{
                System.out.println("ThreadPool.repool():重设中……");
            }
            // 优先级别判定
            switch (repool.getPriority()) ...{
            case Thread.MIN_PRIORITY:
                this._idxThreads[PRIORITY_LOW].add(repool);
                break;
            case Thread.NORM_PRIORITY:
                this._idxThreads[PRIORITY_NORMAL].add(repool);
                break;
            case Thread.MAX_PRIORITY:
                this._idxThreads[PRIORITY_HIGH].add(repool);
                break;
            default:
                throw new IllegalStateException("没有此种级别");
            }
            // 通知所有线程
            notifyAll();

        } else ...{
            if (this._debug) ...{
                System.out.println("ThreadPool.repool():注销中……");
            }
            repool.shutDown();
        }
        if(this._debug)...{
            System.out.println("ThreadPool.repool():完成");
        }
    }
    public void setDebug(boolean debug)...{
        this._debug=debug;
    }
    public synchronized  void shutDown()...{
        this._shutdown=true;
        if(this._debug)...{
            System.out.println("ThreadPool.shutDown():关闭中……");
        }
        for(int index=0;index<=PRIORITY_NORMAL;index++)...{
            List threads=this._idxThreads[index];
            for(int threadIndex=0;threadIndex<threads.size();threadIndex++)...{
                Pooled idleThread=(Pooled)threads.get(threadIndex);
                idleThread.shutDown();
            }
        }
        notifyAll();
    }
    
    /** *//**
     * 以指定的优先级启动线程
     * @param target
     * @param priority
     */
    public synchronized void start(Runnable target,int priority)...{
        Pooled thread=null;
        List idleList=this._idxThreads[priority];
        int idleSize=idleList.size();

        if(idleSize>0)...{
            int lastIndex=idleSize-1;
            thread=(Pooled)idleList.get(lastIndex);
            idleList.remove(idleList);
            thread.setTarget(target);
        }else...{
            this._threadCount++;
            thread=new Pooled(target,"Pooled->"+this._threadCount,this);
            switch(priority)...{
            
            case PRIORITY_LOW:
                thread.setPriority(Thread.MIN_PRIORITY);
                break;
            case PRIORITY_NORMAL:
                thread.setPriority(Thread.NORM_PRIORITY);
                break;
            case PRIORITY_HIGH:
                thread.setPriority(Thread.MAX_PRIORITY);
                break;
                default:
                    thread.setPriority(Thread.NORM_PRIORITY);
            }
            //启动
            thread.start();
    
            }
        
        
    }

    /** *//**
     * 返回线程数量
     * 
     * @return
     */
    public int getThreadsCount() ...{
        return this._threadCount;
    }

}

Pooled.java:
package org.loon.framework.util.test;

/** *//**
 * <p>
 * Title: LoonFramework
 * </p>
 * <p>
 * Description:
 * </p>
 * <p>
 * Copyright: Copyright (c) 2007
 * </p>
 * <p>
 * Company: LoonFramework
 * </p>
 * 
 * @author chenpeng
 * @email:[email]ceponline@yahoo.com.cn[/email]
 * @version 0.1
 */
public class Pooled extends Thread ...{

    private ThreadPool _pool;

    private Runnable _target;

    private boolean _shutdown = false;

    private boolean _idle = false;

    public Pooled(Runnable target) ...{
        super(target);
    }

    public Pooled(Runnable target, String name) ...{
        super(target, name);
    }

    public Pooled(Runnable target, String name, ThreadPool pool) ...{
        super(name);
        this._pool = pool;
        this._target = target;
    }

    public Pooled(String name) ...{
        super(name);
    }

    public Pooled(ThreadGroup group, Runnable target) ...{
        super(group, target);
    }

    public Pooled(ThreadGroup group, Runnable target, String name) ...{
        super(group, target, name);
    }

    public Pooled(ThreadGroup group, String name) ...{
        super(group, name);
    }

    public Runnable getTarget() ...{
        return this._target;
    }

    public boolean isIdle() ...{
        return this._idle;
    }

    public void run() ...{
        while (!this._shutdown) ...{
            this._idle = false;
            if (this._target != null) ...{
                this._target.run();
            }
            this._idle = true;
            try ...{

                this._pool.repool(this);

                synchronized (this) ...{
                    wait();
                }

            } catch (InterruptedException ex) ...{
                System.err.println(ex.getMessage());
            }
            this._idle = false;
        }
    }

    public synchronized void setTarget(Runnable target) ...{
        this._target = target;
        notifyAll();
    }

    public synchronized void shutDown() ...{
        this._shutdown = true;
        notifyAll();
    }

}

测试用类:
package org.loon.framework.util.test;
/** *//**
 * <p>Title: LoonFramework</p>
 * <p>Description:线程池测试</p>
 * <p>Copyright: Copyright (c) 2007</p>
 * <p>Company: LoonFramework</p>
 * @author chenpeng  
 * @email:[email]ceponline@yahoo.com.cn[/email] 
 * @version 0.1
 */
public class ThreadPoolTest ...{

    
    private static Runnable createRunnable(final int id) ...{
        return new Runnable() ...{
            public void run() ...{
                System.out.println("线程" + id + ",运行 ");
                try ...{
                    Thread.sleep(1000);
                }
                catch (InterruptedException ex) ...{ }
                System.out.println("线程" + id + ",结束");
            }
        };
    }
    
    public static void main(String[]args)...{
        ThreadPool pool=ThreadPool.getInstance();
        pool.setDebug(true);
         for (int i=1; i<=10; i++) ...{
             //根据数值,设定不同优先级
             if(i%2==0)...{
                     pool.start(createRunnable(i), ThreadPool.PRIORITY_HIGH);
             }else...{
                     pool.start(createRunnable(i), ThreadPool.PRIORITY_LOW);
             }
         }
        System.out.println("线程池测试中……");
        System.out.println("线程池线程总数:"+pool.getThreadsCount());
        pool.shutDown();
    }

}


本文转自 cping 51CTO博客,原文链接:http://blog.51cto.com/cping1982/130180


相关文章
|
29天前
|
安全 Java 测试技术
Java并行流陷阱:为什么指定线程池可能是个坏主意
本文探讨了Java并行流的使用陷阱,尤其是指定线程池的问题。文章分析了并行流的设计思想,指出了指定线程池的弊端,并提供了使用CompletableFuture等替代方案。同时,介绍了Parallel Collector库在处理阻塞任务时的优势和特点。
|
11天前
|
存储 监控 小程序
Java中的线程池优化实践####
本文深入探讨了Java中线程池的工作原理,分析了常见的线程池类型及其适用场景,并通过实际案例展示了如何根据应用需求进行线程池的优化配置。文章首先介绍了线程池的基本概念和核心参数,随后详细阐述了几种常见的线程池实现(如FixedThreadPool、CachedThreadPool、ScheduledThreadPool等)的特点及使用场景。接着,通过一个电商系统订单处理的实际案例,分析了线程池参数设置不当导致的性能问题,并提出了相应的优化策略。最终,总结了线程池优化的最佳实践,旨在帮助开发者更好地利用Java线程池提升应用性能和稳定性。 ####
|
7天前
|
监控 Java 开发者
深入理解Java中的线程池实现原理及其性能优化####
本文旨在揭示Java中线程池的核心工作机制,通过剖析其背后的设计思想与实现细节,为读者提供一份详尽的线程池性能优化指南。不同于传统的技术教程,本文将采用一种互动式探索的方式,带领大家从理论到实践,逐步揭开线程池高效管理线程资源的奥秘。无论你是Java并发编程的初学者,还是寻求性能调优技巧的资深开发者,都能在本文中找到有价值的内容。 ####
|
1月前
|
监控 安全 Java
在 Java 中使用线程池监控以及动态调整线程池时需要注意什么?
【10月更文挑战第22天】在进行线程池的监控和动态调整时,要综合考虑多方面的因素,谨慎操作,以确保线程池能够高效、稳定地运行,满足业务的需求。
109 38
|
14天前
|
存储 缓存 监控
Java中的线程池深度解析####
本文深入探讨了Java并发编程中的核心组件——线程池,从其基本概念、工作原理、核心参数解析到应用场景与最佳实践,全方位剖析了线程池在提升应用性能、资源管理和任务调度方面的重要作用。通过实例演示和性能对比,揭示合理配置线程池对于构建高效Java应用的关键意义。 ####
|
14天前
|
监控 Java
线程池大小如何设置
在并发编程中,线程池是一个非常重要的组件,它不仅能够提高程序的响应速度,还能有效地利用系统资源。合理设置线程池的大小对于优化系统性能至关重要。本文将探讨如何根据应用场景和系统资源来设置线程池的大小。
|
1月前
|
Prometheus 监控 Cloud Native
JAVA线程池监控以及动态调整线程池
【10月更文挑战第22天】在 Java 中,线程池的监控和动态调整是非常重要的,它可以帮助我们更好地管理系统资源,提高应用的性能和稳定性。
77 4
|
1月前
|
Prometheus 监控 Cloud Native
在 Java 中,如何使用线程池监控以及动态调整线程池?
【10月更文挑战第22天】线程池的监控和动态调整是一项重要的任务,需要我们结合具体的应用场景和需求,选择合适的方法和策略,以确保线程池始终处于最优状态,提高系统的性能和稳定性。
191 2
|
2月前
|
缓存 监控 Java
java中线程池的使用
java中线程池的使用
|
2月前
|
Java Linux iOS开发
如何设置 Java 的环境变量
设置Java环境变量是使用Java开发工具和运行Java程序的前提。主要步骤包括:安装JDK,配置系统环境变量中的JAVA_HOME、PATH和CLASSPATH,确保命令行可直接调用javac和java命令。
48 6