
thread
懒水獭
懒人推动技术进步
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Runnable+Callable+FutureTask
Runnable interface void run() donot throws Exception Callable<V> interface V call() throws Exception Future<V> ...原创 2016-02-18 14:56:26 · 144 阅读 · 0 评论 -
ThreadLocal
private static final ThreadLocal<Integer> value = new ThreadLocal<Integer>() { @Override protected Integer initialValue() { return 0; } }; ...原创 2016-03-02 17:18:29 · 157 阅读 · 0 评论