ThreadPoolExecutor クラスを理解しようとしています。この回答と Javadocを読みました。しかし、私の実験はその説明と一致しません:
IDを追跡するためのファクトリでスレッドプールを初期化します
int tcounter = 0;
ThreadPoolExecutor executor = new ThreadPoolExecutor(2, 4, 1, TimeUnit.MINUTES,
new ArrayBlockingQueue<Runnable>(1000), new ThreadFactory() {
@Override
public Thread newThread(Runnable r) {
return new mThread(tcounter++, r);
}
});
public class mThread extends Thread {
int id;
private mThread(int id, Runnable run) {
super(run);
GLog.e("created thread " + id);
this.id = id;
}
}
次に、タスク:
public class mRunanble implements Runnable {
int value = 0;
private mRunanble(int value) {
super();
this.value = value;
}
@Override
public void run() {
SystemClock.sleep(3000);
Thread t = Thread.currentThread();
if (t instanceof mThread) {
GLog.e("Say " + (value) + " on thread " + ((mThread) t).id);
}
}
}
ボタンにアクションを割り当てます。
executor.execute(new mRunanble(i++));
しかし、私はそのボタンをスパムし、3 番目のスレッドが作成されないため、ThreadPoolExecutor コンストラクター ( maximumPoolSize=4
) の 2 番目のパラメーターは何ですか。4 つのスレッドが作成され、そのうちの 2 つが実行終了の 1 分後に強制終了されることを確認していました。