首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

Java之wait()跟notify()

2014-03-19 
Java之wait()和notify()public class TestConcurrentThread {public static final Object lock new Obje

Java之wait()和notify()
public class TestConcurrentThread {public static final Object lock = new Object();public static List<String> list = new ArrayList<String>();public static void main(String[] args) {Thread customerThread = new Thread(new Customer());customerThread.start();Thread producerThread = new Thread(new Producer());producerThread.start();}}

结论:

1.有wait(),notify()的地方必须有synchronized

2.wait()之后必须通过notify()系唤醒

3.notify()系的时候需要在synchronized代码块执行完成之后才能释放锁

热点排行