は、エグゼキューの使用を参照してください。しかし、自分で楽しくしたいなら、このようなものを試してみてください。メモ帳に書きましたが、それ以外のものはすべて手に入れても捕らえなければならない例外がいくつかあります。メモ帳はコードエラーを捕まえていません。これは実際の解決策よりもコンセプトですが、一般に有用である可能性がある。
他の場所で
private ConcurrentLinkedQueue<MyThread> tQueue =
new ConcurrentLinkedQueue<MyThread>();
class MyThread extends Thread {
public Runnable doSomething;
public void run() {
// Do the real work.
doSomething();
// Clean up and make MyThread available again.
tQueue.add(mythread);
// Might be able to avoid this synch with clever code.
// (Don't synch if you know no one's waiting.)
// (But do that later. Much later.)
synchronized (tQueue) {
// Tell them the queue is no longer empty.
tQueue.notifyAll();
}
}
}
:また
// Put ten MyThreads in tQueue.
for (int i = 0; i < 10; i++) tQueue.add(new MyThread());
// Main Loop. Runs ten threads endlessly.
for (;;) {
MyThread t = tQueue.poll();
if (t == null) {
// Queue empty. Sleep till someone tells us it's not.
do {
// There's a try-catch combo missing here.
synchonized(tQueue) { tQueue.wait() };
t = tQueue.poll();
} while (t == null) break; // Watch for fake alert!
}
t.doSomething = do_some_work;
t.start();
}
、ConcurrentLinkedQueueの巧妙な使用に注意してください。 ArrayListやLinkedListのようなものを使うこともできますが、それらを同期させる必要があります。
http://docs.oracle.com/javase/7/docs/api/java/util /concurrent/BlockingQueue.htmlはそのような仕事には完璧です – bkowalczyyk