最新文章列表

Item 68: Prefer executors and tasks to threads

1.  java.util.concurrent contains an Executor Framework, which is a flexible interface-based task execution facility. Creating a work queue requires a single line of code:   ExecutorService executor ...
leonzhx 评论(0) 有922人浏览 2014-05-02 15:57

给公司做的轮询优化

实现功能: 1、轮询的增删改查,暂停、启动 未实现功能: 2、class文件的上传,替换
raymondwang1314 评论(2) 有175人浏览 2013-09-09 13:00

Item 6: Eliminate obsolete object references

1.  An obsolete reference is simply a reference that will never be dereferenced again.   2.  Memory leaks in garbage-collected languages (more properly known as unintentional object retentions) are ...
leonzhx 评论(0) 有1149人浏览 2013-02-08 09:25

使用ScheduledThreadPoolExecutor代替Timer&TimerTask

        如果我们想要延迟(deferred)或者周期性(periodic)执行一个任务,我们可以使用Java API 的Timer和TimerTask类。         一般步骤是:                继承TimerTask(抽象类),复写run方法,方法体里代表需要执行的任务。                实例化Timer(可以通过构造方法设置为守护线程),调用sc ...
zjuttsw 评论(0) 有658人浏览 2013-01-25 20:18

【转】java并发编程-Executor框架

转载自 http://www.iteye.com/topic/366591   Executor框架是指java 5中引入的一系列并发库中与executor相关的一些功能类,其中包括线程池,Executor,Executors,ExecutorService,CompletionService,Future,Callable等。他们的关系为:   并发编程的一种编程方式是把任务拆分为一 ...
longgangbai 评论(0) 有3727人浏览 2012-11-28 13:20

Scheduled ThreadPool Executor suppressed or stopped after error happen

ScheduledThreadPoolExecutor Execution periodic         Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given period; that ...
george.gu 评论(0) 有1041人浏览 2012-03-20 16:54

【java并发】juc Executor框架详解

Executor 框架是 juc 里提供的线程池的实现。前两天看了下 Executor 框架的一些源码,做个简单的总结。 线程池大概的思路是维护一个的线程池用于执行提交的任务。我理解池的技术的主要意义有两个: 1.  资源的控制,如并发量限制。像连接池这种是对数据库资源的保护。 2.  资源的有效利用,如线程复用,避免频繁创建线程和线程上下文切换。 ...
singleant 评论(5) 有12485人浏览 2012-02-26 13:55

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) HTML(59043) JavaScript(54918) .net(54785) Web(54513) 工作(54116) Linux(50906) Oracle(49876) 应用服务器(43288) Spring(40812) 编程(39454) Windows(39381) JSP(37542) MySQL(37268) 数据结构(36423)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics