美文网首页
【Java并发】线程池与队列

【Java并发】线程池与队列

作者: Rockie_h | 来源:发表于2018-04-03 23:47 被阅读13次

    //TODO
    线程池
    <pre>public ThreadPoolExecutor(int corePoolSize,
    int maximumPoolSize,
    long keepAliveTime,
    TimeUnit unit,
    BlockingQueue<Runnable> workQueue,
    RejectedExecutionHandler handler)</pre>

    Executors.newFixedThreadPool(int nThreads)
    Executors.newCachedThreadPool()
    Executors.newSingleThreadScheduledExecutor()
    Executors.newScheduledThreadPool(int corePoolSize)

    队列
    BlockingQueue<E>
    ArrayBlockingQueue<E>
    LinkedBlockingQueue<E>
    ...
    广义上的内置条件队列:Condition

    相关文章

      网友评论

          本文标题:【Java并发】线程池与队列

          本文链接:https://www.haomeiwen.com/subject/dbjhhftx.html