文章列表
1.什么是线程
2.中断线程
3.线程状态
4.线程属性
5.同步
6.阻塞队列
7.线程安全的集合
8.callable和Future
9.执行器
10.同步器
11.线程和Swing
findbugs 出错类型及对应解释
转自:http://blog.sina.com.cn/changchangelive
1、Dead store to local variable 本地变量存储了闲置不用的对象
举例:
List accountCoList = new ArrayList();
我们为accountCoList新建了一个对象,但是程序的后面并没有使用 ...