A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. package lm.thread;

  2. /*
  3. * 关于守護線程的演示,礼让程序
  4. */
  5. public class ThreadDemo9 {
  6.         public static void main(String[] args) throws InterruptedException {
  7.                 Mythread10 th1 = new Mythread10();
  8.                 th1.setName("lm1");
  9.                 th1.start();

  10.         }
  11. }

  12. class Mythread10 extends Thread {
  13.         @Override
  14.         public void run() {
  15.                 for (int i = 0; i < 10; i++) {
  16.                         try {
  17.                                 System.out.println("我休眠第"+i+"次");
  18.                                 Thread.sleep(100);
  19.                         } catch (InterruptedException e) {
  20.                         }
  21.                         if (i == 5) {
  22.                                 Thread.currentThread().interrupt();
  23.                                 System.out.println("我中断啦");
  24.                                
  25.                         } else {
  26.                                 System.out.println(Thread.currentThread().getName() + "_" + i);
  27.                         }

  28.                 }
  29.         }
  30. }
复制代码

1 个回复

倒序浏览
class Mythread10 extends Thread {
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马