java学习(160):interrupt方法
生活随笔
收集整理的這篇文章主要介紹了
java学习(160):interrupt方法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
import java.util.PrimitiveIterator;public class Classroon implements Runnable {private Thread student;//學生線程private Thread teacher;//老師線程public Classroon(){student = new Thread( this,"小迷糊" );teacher = new Thread( this,"大教授" );student.setPriority( Thread.MIN_PRIORITY );student.start();teacher.start();}public void run(){Thread current=Thread.currentThread();//獲取當前方法的線程if(current==student){//如果是學生線程System.out.println( current.getName()+"在聽課" );System.out.println( current.getName()+"不聽課,準備睡覺" );try {Thread.sleep( 1000*60*60 );}catch (InterruptedException e){System.out.println( "學生被老師叫醒了,繼續聽課" );e.printStackTrace();}}if(current==teacher){//如果是老師線程,則吵醒學生System.out.println( "老師上課" );for(int i=1;i<=3;i++){System.out.println( current.getName()+"大聲喊,上課了,不要睡覺啊" );try {Thread.sleep( 2000 );}catch (InterruptedException e){e.printStackTrace();}}student.interrupt();//中斷student線程的休眠狀態}}
}
測試類
public class test107 {public static void main(String[] args){new Classroon();} }運行結果
總結
以上是生活随笔為你收集整理的java学习(160):interrupt方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 计算机如何驱动无线网络,笔记本电脑无线网
- 下一篇: b样条和三次样条_样条曲线