- 1、本文档共15页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《《【成都IT培训】java多线程notify和wait》.docx
HYPERLINK / \t _blank 【成都IT培训】java多线程notify和wait
java多线程之 wait(),notify(),notifyAll() wait(),notify(),notifyAll()不属于Thread类,而是属于Object基础类,也就是说每个对像都有 wait(),notify(),notifyAll()的功能。因为都个对像都有锁,锁是每个对像的基础,当然操作锁的方法也是最基础了。 HYPERLINK 先看java doc怎么说: wait导致当前的线程等待,使当前线程进入阻塞状态(对象等待队列),直到其他线程调用此对象的 notify() 方法或 notifyAll() 方法。当前的线程必须拥有此对象锁。该线程发布对此对象锁的所有权并等待,直到其他线程通过调用 notify 方法,或 notifyAll 方法通知在此对象的锁上等待的线程醒来。然后该线程将等到重新获得对对象锁的所有权后才能在wait阻塞处开始继续执行。 例子如下 import java.util.ArrayList; import java.util.List; class Consume implements Runnable { private List container = null; private int count; public Consume(List lst) { this.container = lst; } public void run() { while(true){ synchronized (container) { if (container.size()==0) { try { System.out.println(“++++++++++++++wait之前”); container.wait();// 放弃锁 System.out.println(“++++++++++++++wait之后”); } catch (InterruptedException e) { e.printStackTrace(); } } try { Thread.sleep(100); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } container.remove(0); container.notify(); System.out.println(“我吃了” + container.size() + “个”); } } } } class Product implements Runnable { private List container = null; private int count; public Product(List lst) { this.container = lst; } public void run() { while(true) { synchronized (container) { if (container.size()= MultiThread.MAX) { try { container.wait(); } catch (InterruptedException e) { e.printStackTrace(); } } try { Thread.sleep(100); } catch (InterruptedException e) { e.printStackTrace(); } container.add(new Object()); container.notify(); System.out.println(“我生产了” +container.size() + “个”); } } } } public class MultiThread {
您可能关注的文档
- 《《the sociolinguistics of a short-lived innovation》.pdf
- 《《the stock market and investment》.pdf
- 《《The World Bank's Innovation Market》.pdf
- 《《The+Business+of+Investment+Banking》.ppt
- 《《The+J2EE+Tutorial-中文版》.pdf
- 《《The.Story.Of.Ireland.S01E02》.pptx
- 《《The.Story.Of.Ireland.S01E03》.pptx
- 《《The.Story.Of.Ireland.S01E04》.pptx
- 《《Thermal and hydraulic performance of sinusoidal corrugated》.pdf
- 《《Thermal hydraulic analysis of Syrian MNSR research reactor using》.pdf
- 5.3.1函数的单调性(教学课件)--高中数学人教A版(2019)选择性必修第二册.pptx
- 部编版道德与法治2024三年级上册 《科技提升国力》PPT课件.pptx
- 2.7.2 抛物线的几何性质(教学课件)-高中数学人教B版(2019)选择性必修第一册.pptx
- 人教部编统编版小学六年级上册道德与法治9 知法守法 依法维权(第一课时)课件.pptx
- 三年级上册品德道德与法治《学习伴我成长》.pptx
- 部编版小学道德与法治六年级上册6 人大代表为人民 课件.pptx
- 部编版小学道德与法治六年级上册1感受生活中的法律第一课时课件.pptx
- 2.5.2圆与圆的位置关系(教学课件)-高中数学人教A版(2019)选择性必修第一册.pptx
- 2.5.1直线与圆的位置关系-(教学课件)--高中数学人教A版(2019)选择性必修第一册.pptx
- 14.1.1 同底数幂的乘法(教学课件)-初中数学人教版八年级上册.pptx
文档评论(0)