51Testing软件测试论坛
标题:
Day4 测试积点任务
[打印本页]
作者:
lsekfe
时间:
2018-6-27 10:25
标题:
Day4 测试积点任务
特别问题:
关于多线程(java)
java version
jdk8_151 64位
代码
package com.clark;
public class MyRunnable implements Runnable {
public void run() {
System.out.println("hh!");
}
}
package com.test;
import com.clark.MyRunnable;
public class Run {
public static void main(String[] args) {
Runnable runnable = new MyRunnable();
Thread thread = new Thread(runnable);
thread.start();
Thread t1 = new Thread(thread);
t1.start();
System.out.println("Over!");
}
}
复制代码
问题很简单,上面的代码有哪些可能的输出?为什么?
回复后看答案:
作者:
qqq911
时间:
2018-6-28 10:40
hh 和Over 轮巡输出
作者:
jingzizx
时间:
2018-6-28 12:30
加油!支持下!
作者:
海海豚
时间:
2018-6-28 13:29
hh 和Over 轮巡输出
作者:
梦想家
时间:
2018-6-28 13:34
hh 和Over 轮巡输出
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2