摘要: 1. 线程池View Code package com;import java.util.concurrent.Executors;import java.util.concurrent.ThreadPoolExecutor;public class MutiThread extends Thread { private static int MaxTask = 3; private static int currTask = 0; private static ThreadPoolExecutor pool = (ThreadPoolExecutor) Executors ... 阅读全文
posted @ 2012-11-27 14:20 秋日私语的博客 阅读(965) 评论(0) 推荐(0) 编辑