package animal;
class HelloThread implements Runnable
{
int i;
public void run()
{
i=0; System.out.println("当前线程"+Thread.currentThread());//第一个 while(true) { System.out.println("当前线程"+Thread.currentThread().getName()); System.out.println("Hello"+i++); if(i>5) break; } }
}
public class text
{
public static void main(String[]args)
{
HelloThread r=new HelloThread();
Thread t=new Thread(r);
Thread t2=new Thread(r);
t.start();
t2.start();
}
}
结果
当前线程Thread[Thread-1,5,main]
当前线程Thread-1
当前线程Thread[Thread-0,5,main]
当前线程Thread-0
Hello1
当前线程Thread-0
Hello2
Hello0
当前线程Thread-1
Hello3
当前线程Thread-1
Hello4
当前线程Thread-1
Hello5
当前线程Thread-0
Hello6
为什么【第一个】那里的返回了2个地址,上面Hello1前有4个【当前线程。。。。】
他们是有先后顺序的吗
神不在的星期二
芜湖不芜
相关分类