我想同時啓動兩個進程,並確保在繼續其他步驟之前完成它們。你能幫我嗎?我已經嘗試了線程,它不能同時啓動兩個並等待完成。如何同時啓動兩個進程然後等待兩個進程完成?
final CyclicBarrier gate = new CyclicBarrier(3);
Thread r2 = new Thread()
{
public void run()
{
try
{
int i = 0;
while (i < 3)
{
System.out.println("Goodbye, " + "cruel world!");
Thread.sleep(2000L);
i++;
gate.await();
}
}
catch (InterruptedException | BrokenBarrierException iex)
{
}
}
};
Thread r3 = new Thread()
{
public void run()
{
try
{
int i = 0;
while (i < 3)
{
System.out.println("Goodbye, " + "cruel world!");
Thread.sleep(2000L);
i++;
gate.await();
}
}
catch (InterruptedException | BrokenBarrierException iex)
{
}
}
};
r2.start();
r3.start();
gate.await();
System.out.println("Donew");
請顯示您所做的研究和您嘗試過的。謝謝。 – Gray
你說你已經嘗試過使用'Thread'。你能告訴我們你試驗過的代碼嗎?這會讓你更加清楚你已經嘗試了什麼,並且(如果你解釋它)你想達到什麼目的。 –