本帖最后由 fei_xiong 于 2014-4-25 08:17 编辑
将Test1中的int的静态修饰去掉,则打印20个,加上就打印10个,原因在哪?
- public class Demo {
- public static void main(String[] args) {
- new Test1().start();
- new Test1().start();
- }
- }
- class Test1 extends Thread {
- static int count = 0;
- public void run() {
- while (true) {
- System.out.println(count++);
- if (count > 10)
- break;
- }
- }
- }
复制代码 |
|