JDK工具箱中Timer的缺陷问题


JDK工具箱中Timer的缺陷问题_第1张图片

示例代码如下:

import java.util.*;
import static java.util.concurrent.TimeUnit.SECONDS;

/**
 * OutOfTime
 * 

* 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(); } } }

 


你可能感兴趣的:(Java,Concurrent,And,Threads)