zoukankan      html  css  js  c++  java
  • java 线程池的使用

    java  可以通过Executors 创建四类线程池:

    1、缓存线程池:Executors.newCachedTreadPool();创建一个可缓存线程池,如果线程池长度超过处理需要,可灵活回收空闲线程,若无可回收,则新建线程。

    2、定长线程池:Executors.newFixedThreadPool();创建一个定长线程池,可控制线程最大并发数,超出的线程会在队列中等待。

    3、定时线程池:Executors.newScheduledThreadPool();创建一个定长线程池,支持定时及周期性任务执行。

    4、单线程线程池:Executors.newSingleThreadExecutor();创建一个单线程化的线程池,它只会用唯一的工作线程来执行任务,保证所有任务按照指定顺序(FIFO, LIFO, 优先级)执行。

    这四种线程都有各自的优点和适合应用的场景。下面用代码列举下定长线程池:

    package com.java.main.test.thread;
    
    import java.util.Map;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    
    public class ThreadForEditName {
        
        static final Map<String, Object> map = new ConcurrentHashMap<String, Object>();
        
        public static void main(String[] args) {
            
            ExecutorService service = Executors.newFixedThreadPool(4);
            
            for (int i = 0; i < 100; i++) {
                Runnable run = new TaskTread(i+1);
                Thread thread = new Thread(run);
                //thread.setName("thread>>:00"+i);
                //map.put("thread>>:00"+i, thread);
                service.execute(thread);
            }
            
        }
        
        static class TaskTread implements Runnable{
            
            private int num;
            
            public TaskTread(int num) {
                this.num = num;
            }
            
            @Override
            public void run() {
                String name = "myThread-"+num;
                Thread.currentThread().setName(name);
                map.put(name, this);
                System.out.println("开始线程:"+name);
                
                try {
                    Thread.sleep(5000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }finally{
                    map.remove(name);
                    System.out.println("移除:"+name);
                    System.out.println(map.size());
                }
            }
        }
    
    }
  • 相关阅读:
    learn the python the hard way习题11~17总结
    JavaScript 第三章总结
    JavaScript 第二章总结
    JavaScript 第一章总结
    Getting started with Processing 示例11-9 追随鼠标移动
    第二十章 更新和删除数据
    第十九章 插入数据
    第十八章 全文本搜索
    第十七章 组合查询
    第十六章 创建高级联结
  • 原文地址:https://www.cnblogs.com/phyxis/p/5535157.html
Copyright © 2011-2022 走看看