美文网首页
多线程,5个线程内部打印hello和word,hello在前要求

多线程,5个线程内部打印hello和word,hello在前要求

作者: D___Will | 来源:发表于2018-05-15 10:38 被阅读298次

    CyclicBarrier 类的使用大可以家自行百度,有好多写的很详细

    final CyclicBarrier num =new CyclicBarrier(5);

    for (int i =0; i <5; i++) {

    new Thread(new Runnable() {

    @Override

            public void run() {

    try {

    System.out.println("hello");

                    num.await();

                    System.out.println("world");

                }catch (Exception e){

    }

    }

    }).start();

    }

    相关文章

      网友评论

          本文标题:多线程,5个线程内部打印hello和word,hello在前要求

          本文链接:https://www.haomeiwen.com/subject/qgredftx.html