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

进程与线程

开发平台:

Java

  1. public class DeprecatedStop extends Object implements Runnable {
  2. public void run() {
  3. int count = 0;
  4. while ( true ) {
  5. System.out.println("Running ... count=" + count);
  6. count++;
  7. try {
  8. Thread.sleep(300);
  9. } catch ( InterruptedException x ) {
  10. // ignore
  11. }
  12. }
  13. }
  14. public static void main(String[] args) {
  15. DeprecatedStop ds = new DeprecatedStop();
  16. Thread t = new Thread(ds);
  17. t.start();
  18. try {
  19. Thread.sleep(2000);
  20. } catch ( InterruptedException x ) {
  21. // ignore
  22. }
  23. // Abruptly stop the other thread in its tracks!
  24. t.stop();
  25. }
  26. }