ssg 发表于 2018-5-27 10:14:36

java 运行没有结果


class MyThread implements Runnable {
        private boolean flag = true;                                         // 定义标志位属性
        public void run() {                                                                // 覆写run()方法
                int i = 0;
                while (this.flag) {                                                        // 循环输出
                        while (true) {
                                System.out.println(Thread.currentThread().getName() + "运行,i = "
                                                + (i++));                                        // 输出当前线程名称
                        }
                }
        }
        public void stop() {                                                                 // 编写停止方法
                this.flag = false;                                                        // 修改标志位
        }
}
public class StopDemo {
        public static void main(String[] args) {
                MyThread my = new MyThread();                        // 实例化Runnable接口对象
                Thread t = new Thread(my, "线程");                // 建立线程对象
                t.start() ;                                                                        // 启动线程
                my.stop() ;                                                                        // 线程停止,修改标志位
        }
}



这条例题运行后没有结果,为什么

ssg 发表于 2018-5-27 10:15:47

@人造人

ssg 发表于 2018-5-27 10:17:55

来人啦{:5_107:}

Pom 发表于 2018-5-27 10:50:45


ssg 发表于 2018-5-27 11:03:13

Pom 发表于 2018-5-27 10:50


那是书本给的例题,我什么都不知道,按书本打上去的

ssg 发表于 2018-5-27 11:04:45

Pom 发表于 2018-5-27 10:50


我试试大佬你发的图{:5_108:}
页: [1]
查看完整版本: java 运行没有结果