我正在准备采访,只是想准备一些基本的线程示例和结构,以便我可以在白板编码期间使用它们,如果必须的话。
我正在阅读有关CyclicBarrier的内容并且正在尝试使用它,所以我编写了一个非常简单的代码:
import java.util.concurrent.CyclicBarrier;
public class Threads
{
/**
* @param args
*/
public static void main(String[] args)
{
// ******************************************************************
// Using CyclicBarrier to make all threads wait at a point until all
// threads reach there
// ******************************************************************
barrier = new CyclicBarrier(N);
for (int i = 0; i < N; ++i)
{
new Thread(new CyclicBarrierWorker()).start();
}
// ******************************************************************
}
static class CyclicBarrierWorker implements Runnable
{
public void run()
{
try
{
long id = Thread.currentThread().getId();
System.out.println("I am thread " + id + " and I am waiting for my friends to arrive");
// Do Something in the Thread
Thread.sleep(1000*(int)(4*Math.random()*10));
// Now Wait till all the thread reaches this point
barrier.await();
}
catch (Exception e)
{
e.printStackTrace();
}
//Now do whatever else after all threads are released
long id1 = Thread.currentThread().getId();
System.out.println("Thread:"+id1+" We all got released ..hurray!!");
System.out.println("We all got released ..hurray!!");
}
}
final static int N = 4;
static CyclicBarrier barrier = null;
}
您可以按原样复制粘贴并在编译器中运行。
我想要验证的是,确实所有线程都在代码中等待:
barrier.await();
我放了一些等待,并希望我会在控制台上按顺序看到4个语句一个接一个地出现,然后是“release.hurray”语句的'outburst'。但无论我选择什么样的睡眠,我都会看到所有声明的爆发。
我在这里错过了什么吗?
由于 P.S:是否有像http://codepad.org/F01xIhLl这样的在线编辑器,我可以在其中放置Java代码并点击按钮来运行丢弃代码? 。在运行任何代码之前,我发现了一些需要一些配置的内容。
答案 0 :(得分:2)
代码看起来很好,但在睡眠之前写入System.out可能更有启发性。在run()中考虑这个:
long id = Thread.currentThread().getId();
System.out.println("I am thread " + id + " and I am waiting for my friends to arrive");
// Do Something in the Thread
Thread.sleep(1000*8);
在我的机器上,我仍然看到一阵爆裂,但很明显,这些线被阻挡在屏障上。
答案 1 :(得分:2)
如果你想避免第一次爆发在睡眠中使用随机
Thread.sleep(1000*(int)(8*Math.rand()));
答案 2 :(得分:1)
我等了一会儿,希望我 会看到4个陈述出现一个 以其他方式顺序进行 控制台,然后是'爆发' “已发布......发表”声明。但我是 看到所有声明都爆发了 无论我选择什么,都在一起 睡觉。
我观察到的行为是所有创建的线程,睡眠时间大致相同。请记住,其他线程可以在过渡期间执行其工作,因此将被安排;由于创建的所有线程都在相同的时间内休眠,因此调用System.out.println调用时的时间差异非常小。
编辑:other answer of sleeping of a random amount of time将有助于更好地理解障碍的概念,因为它可以保证(在某种程度上)多个线程在不同时刻到达障碍的可能性。