本帖最后由 ς高眼光の目标 于 2014-4-26 14:41 编辑
- //package ThreadDemo;
- class Test extends Thread
- {
- //private String name;
- private <font color="#00bfff">static</font> int tick=100;//<font color="#00ff00">这句话什么意思, 为什么加了static 之后 下面的2个线程为什么会不重复打印了</font>
- //Test(String name)
- //{
- //this.name=name;
- // super(name);
- //}
- public void run()
- {
- while (true)
- {
- if(tick>0)
- System.out.println(Thread.currentThread().getName()+"...."+tick--);
- }
- }
- }
- class ThreadDemo
- {
- public static void main(String[] args)
- {
- Test t1 = new Test();
- Test t2 = new Test();
- t1.start();
- t2.start();
- }
- }
复制代码
|
|