之前碰到的问题: while(x!=x){ System.out.println("输出")}在不修改里面的代码的怎样让系统能输出?
我利用线程不同步来实现了 ,代码如下:public class While extends Thread {
static int i;
public void run() {
while (true) {
i++;
}
}
public static void main(String[] args) {
Thread t = new While();
t.start();
while (true) {
while (i != i) {
System.out.println("输出");
}
}
}
}
测试的同学,记得关掉运行,要是电脑烧了我可不赔
|
|