菜鸟教程 -- 学的不仅是技术,更是梦想!

Java 教程
(追記) (追記ここまで)

Java 实例 - 线程挂起

Java 实例 Java 实例

以下实例演示了如何将线程挂起:

SleepingThread.java 文件

publicclassSleepingThreadextendsThread{privateintcountDown = 5; privatestaticintthreadCount = 0; publicSleepingThread(){super("" + ++threadCount); start(); }publicStringtoString(){return"#" + getName() + ": " + countDown; }publicvoidrun(){while(true){System.out.println(this); if(--countDown == 0)return; try{sleep(100); }catch(InterruptedExceptione){thrownewRuntimeException(e); }}}publicstaticvoidmain(String[]args)throwsInterruptedException{for(inti = 0; i < 5; i++)newSleepingThread().join(); System.out.println("线程已被挂起"); }}

以上代码运行输出结果为:

#1: 5
#1: 4
#1: 3
#1: 2
#1: 1
……
#5: 3
#5: 2
#5: 1
线程已被挂起

Java 实例 Java 实例

AI 思考中...

点我分享笔记

  • 昵称 (必填)
  • 邮箱 (必填)
  • 引用地址

AltStyle によって変換されたページ (->オリジナル) /