PendingInterrupt.java
上传用户:songled
上传日期:2022-07-14
资源大小:94k
文件大小:0k
源码类别:

进程与线程

开发平台:

Java

  1. public class PendingInterrupt extends Object {
  2. public static void main(String[] args) {
  3. if ( args.length > 0 ) {
  4. Thread.currentThread().interrupt();
  5. long startTime = System.currentTimeMillis();
  6. try {
  7. Thread.sleep(2000);
  8. System.out.println("was NOT interrupted");
  9. } catch ( InterruptedException x ) {
  10. System.out.println("was interrupted");
  11. }
  12. System.out.println(
  13. "elapsedTime=" + ( System.currentTimeMillis() - startTime ));
  14. }
  15. }