java 查询线程_Java多线程查询

嗨,我是并发编程领域的新手,我正在测试下面的代码,似乎while循环没有终止线程.有人可以帮助解释这里发生的事情.

public class PrimePrinter{

public long counter = 0;

public synchronized long getCounter() {

return counter++;

}

public Thread makeThread() {

Runnable rn = new Runnable() {

/* (non-Javadoc)

* @see java.lang.Runnable#run()

*/

@Override

public void run() {

while (counter < 100) {

try {

Thread.sleep(1000);

System.out.println(Thread.currentThread().getName() + " : " +getCounter());

} catch (InterruptedException e) {

e.printStackTrace();

}

}

}

};

return new Thread(rn);

}

public static void main(String[] args) {

int n = 10;

Thread[] threads = new Thread[10];

PrimePrinter pp = new PrimePrinter();

for(int i = 1; i < n; i++) {

threads[i] = pp.makeThread();

threads[i].start();

}

}

}

最后几行输出

Thread-4 : 81

Thread-5 : 87

Thread-7 : 91

Thread-5 : 97

Thread-2 : 95

Thread-4 : 98

Thread-6 : 96

Thread-8 : 90

Thread-1 : 93

Thread-3 : 92

Thread-0 : 94

Thread-2 : 99

Thread-6 : 107

Thread-3 : 103

Thread-0 : 104

Thread-1 : 105

Thread-8 : 106

Thread-5 : 102

Thread-4 : 101

Thread-7 : 100

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值