A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

之前碰到的问题:  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("输出");
                        }
                }
        }
}

测试的同学,记得关掉运行,要是电脑烧了我可不赔

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马