2 Star 0 Fork 0

20145308/java-besti-is-2015-2016-2-20145308

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
InterruptedDemo 416 Bytes
一键复制 编辑 原始数据 按行查看 历史
20145308 提交于 2016-04-10 00:12 +08:00 . new file
public class InterruptedDemo {
public static void main(String[] args) {
Thread thread = new Thread(() -> {
try {
Thread.sleep(99999);
} catch (InterruptedException ex) {
System.out.println("我醒了XD");
}
});
thread.start();
thread.interrupt(); // 主執行緒呼叫thread的interrupt()
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/yg1022/java-besti-is-2015-2016-2-20145308.git
git@gitee.com:yg1022/java-besti-is-2015-2016-2-20145308.git
yg1022
java-besti-is-2015-2016-2-20145308
java-besti-is-2015-2016-2-20145308
master

搜索帮助