📄 outoftime.java
字号:
package net.jcip.examples;import java.util.*;import static java.util.concurrent.TimeUnit.SECONDS;/** * OutOfTime * <p/> * Class illustrating confusing Timer behavior * * @author Brian Goetz and Tim Peierls */public class OutOfTime { public static void main(String[] args) throws Exception { Timer timer = new Timer(); timer.schedule(new ThrowTask(), 1); SECONDS.sleep(1); timer.schedule(new ThrowTask(), 1); SECONDS.sleep(5); } static class ThrowTask extends TimerTask { public void run() { throw new RuntimeException(); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -