我想写一个线程来理解线程已经完成并开始新线程。我的意思是我写了这段代码:
new Thread(new Runnable(){
@Override public void run(){
//code here
}
}).start();
但我想在 for 循环中做到这一点。我只想创建 5 个线程。但是当一个线程完成后,我想创建一个新线程。
for(int i=0;i<300;i++)
{
//I want to create 5 thread here and stop code and then when a thread has finished I want //to create new thread.
}