我想验证一下线程不同步时,成员变量会一致时
public class TestTongbu{
public static int i=0;
public static void main(String [] args){
//这里错了?提示:无法从静态上下文中引用非静态变量 this?
mythread t1=new mythread("t1");
mythread t2=new mythread("t2");
t1.start();
t2.start();
}
class mythread extends Thread {
mythread(String s){
super(s);
}
public void run(){
i++;
try{
Thread.sleep(1);
}catch(InterruptedException e){
return;
}
System.out.println(Thread.currentThread().getName()+i);
}
}
}
----------- //这里错了?提示:无法从静态上下文中引用非静态变量 this?
mythread t1=new mythread("t1");
mythread t2=new mythread("t2");
------ 我该怎么修改才能通过编译程序,看到不同步的效果呀
[解决办法]
方法1、加static
static class mythread extends Thread
方法2、将mythread类定义移动到TestTongbu类外部
public class TestTongbu{
//...
}
class mythread extends Thread{
}
他想要线程间共享变量,你的方法2对于他不合适。
可以的,i换成TestTongbu.i啊。
嘻嘻没注意。
楼主结贴给分!!!