zoukankan      html  css  js  c++  java
  • while(Thread.activeCount() > 1) 所有子线程执行完还是大于1

    1.发现了一个问题 Thread.activeCount()会一直大于2

    public class VolatileTest {
      public static volatile int race = 0;

      public static void increase() {
        race++;
      }

      private static final int THREADS_COUNT = 20;

      public static void main(String[] args) {
        Thread[] threads = new Thread[THREADS_COUNT];
        for (int i = 0; i < THREADS_COUNT; i++) {
          threads[i] = new Thread(new Runnable() {
            @Override
            public void run() {
              for (int i = 0; i < 10000; i++) {
                increase();
              }
            }
          });
          threads[i].start();
        }
        while (Thread.activeCount() > 1) {
          Thread.yield();
        }
        System.out.println(race);
      }
    }

    2.陷入了死循环.......why?

    Thread.yield();//应该主线程先让出cpu使用权

    问题在这Thread.activeCount() 还有个守护线程!!!所以就会一直陷入无限循环。

    加了一句Thread.currentThread().getThreadGroup().list();

    while (Thread.activeCount() > 1) {
    Thread.currentThread().getThreadGroup().list();
    Thread.yield();
    }

  • 相关阅读:
    spoj694 DISUBSTR
    poj3261 Milk Patterns
    poj1743 Musical Theme
    Hdu1403 Longest Common Substring
    bzoj3779 重组病毒
    bzoj3083 遥远的国度
    bzoj3514 Codechef MARCH14 GERALD07加强版
    PAT 乙级 1027 打印沙漏(20) C++版
    PAT 乙级 1060 爱丁顿数(25) C++版
    windows编程之窗口抖动
  • 原文地址:https://www.cnblogs.com/chenhg/p/12953694.html
Copyright © 2011-2022 走看看