Java多线程阻塞与唤醒代码示例
java线程的阻塞及唤醒
1. sleep() 方法:
sleep(…毫秒),指定以毫秒为单位的时间,使线程在该时间内进入线程阻塞状态,期间得不到cpu的时间片,等到时间过去了,线程重新进入可执行状态。(暂停线程,不会释放锁)
//测试sleep()方法 class thread7 implements runnable{ @override public void run() { for(int i=0;i<50;i++){ system.out.println(thread.currentthread().getname()+"num="+i); try { thread.sleep(500); } catch (interruptedexception e) { e.printstacktrace(); } } } } class thread8 implements runnable{ @override public void run() { for(int i=0;i<1000;i++){ system.out.println(thread.currentthread().getname()+"num="+i); } } } public static void main(string[] args) { /* * 测试线程阻塞 */ //测试sleep()方法 thread7 t7=new thread7(); thread8 t8=new thread8(); thread t81=new thread(t8, "饺子"); thread t71=new thread(t7, "包子"); thread t72=new thread(t7, "面包"); t71.start(); t81.start(); t72.start(); }
2.suspend() 和 resume() 方法:。
挂起和唤醒线程,suspend()使线程进入阻塞状态,只有对应的resume()被调用的时候,线程才会进入可执行状态。(不建议用,容易发生死锁)
//测试suspend()和resume()方法 class thread9 implements runnable{ @override public void run() { for(long i=0;i<500000000;i++){ system.out.println(thread.currentthread().getname()+" num= "+i); } } } public static void main(string[] args) { //测试suspend和resume thread9 t9=new thread9(); thread t91=new thread(t9,"包子"); t91.start(); try { thread.sleep(2000); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } t91.suspend(); try { thread.sleep(2000); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } t91.resume(); }
(在控制台打印输出的时候,会停顿2秒钟,然后再继续打印。)
3. yield() 方法:
会使的线程放弃当前分得的cpu时间片,但此时线程任然处于可执行状态,随时可以再次分得cpu时间片。yield()方法只能使同优先级的线程有执行的机会。调用 yield() 的效果等价于调度程序认为该线程已执行了足够的时间从而转到另一个线程。(暂停当前正在执行的线程,并执行其他线程,且让出的时间不可知)
//测试yield()方法 class thread10 implements runnable{ @override public void run() { for(int i=0;i<100;i++){ system.out.println(thread.currentthread().getname()+" num= "+i); if(i==33){ thread.yield(); } } } } public static void main(string[] args) { //测试yield thread10 t10 =new thread10(); thread t101=new thread(t10, "包子"); thread t102=new thread(t10, "面包"); t101.start(); t102.start(); } /* 运行结果为: …… 包子 num= 24 包子 num= 25 包子 num= 26 包子 num= 27 包子 num= 28 包子 num= 29 包子 num= 30 包子 num= 31 包子 num= 32 包子 num= 33 面包 num= 0 面包 num= 1 面包 num= 2 面包 num= 3 …… 面包 num= 30 面包 num= 31 面包 num= 32 面包 num= 33 包子 num= 34 包子 num= 35 包子 num= 36 包子 num= 37 包子 num= 38 …… */
(可以看到,当数字为33时,都发生了交替。)
4.wait() 和 notify() 方法:
两个方法搭配使用,wait()使线程进入阻塞状态,调用notify()时,线程进入可执行状态。wait()内可加或不加参数,加参数时是以毫秒为单位,当到了指定时间或调用notify()方法时,进入可执行状态。(属于object类,而不属于thread类,wait( )会先释放锁住的对象,然后再执行等待的动作。由于wait( )所等待的对象必须先锁住,因此,它只能用在同步化程序段或者同步化方法内,否则,会抛出异常illegalmonitorstateexception.)
//测试wait()和notify()方法 //用生产者和消费者模式模拟这一过程 /*消费者 */ class consumer implements runnable { private vector obj; public consumer(vector v) { this.obj = v; } public void run() { synchronized (obj) { while (true) { try { if (obj.size() == 0) { obj.wait(); } system.out.println("消费者:我要买面包。"); system.out.println("面包数: " + obj.size()); obj.clear(); obj.notify(); } catch (exception e) { e.printstacktrace(); } } } } } /* 生产者 */ class producter implements runnable { private vector obj; public producter(vector v) { this.obj = v; } public void run() { synchronized (obj) { while (true) { try { if (obj.size() != 0) { obj.wait(); } obj.add(new string("面包")); obj.notify(); system.out.println("生产者:面包做好了。"); thread.sleep(500); } catch (exception e) { e.printstacktrace(); } } } } } public static void main(string[] args) { //测试wait()和notify() vector obj = new vector(); thread consumer = new thread(new consumer(obj)); thread producter = new thread(new producter(obj)); consumer.start(); producter.start(); }
5.join()方法
也叫线程加入。是当前线程a调用另一个线程b的join()方法,当前线程转a入阻塞状态,直到线程b运行结束,线程a才由阻塞状态转为可执行状态。
//测试join class thread11 implements runnable{ @override public void run() { system.out.println("start progress."); try { for(int i=0;i<5;i++){ system.out.println("thread11线程 : "+i); thread.sleep(1000); } } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } system.out.println("end progress."); } } public static void main(string[] args) { //测试join thread11 t11=new thread11(); thread t111=new thread(t11); t111.start(); try { t111.join(); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } system.out.println("hi,i'm main线程"); } /* 运行结果为: start progress. thread11线程 : 0 thread11线程 : 1 thread11线程 : 2 thread11线程 : 3 thread11线程 : 4 end progress. hi,i'm main线程 */
总结
本文关于java多线程阻塞与唤醒代码示例的介绍就到这里,希望对大家学习java有所帮助。感兴趣的朋友可以继续参阅:java多线程forkjoinpool实例详解 、 java通过卖票理解多线程 、 java线程安全基础概念解析等。有什么问题可以随时留言,或者有什么方面想要了解的,您也可以留言,小编会及时给您答复。希望大家对多多支持!
上一篇: [SDOI2009]HH的项链