我的JAVA学习之异常整理-java.lang.IllegalMonitorStateException

本文分析了Java中由于线程同步不当导致的IllegalMonitorStateException异常。通过具体代码示例,详细解释了当多个线程在未正确获取锁的情况下调用notify()或notifyAll()方法时,如何引发此异常,并探讨了正确的线程同步机制。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

程序代码:

public static void main(String[] args) {
		Test t = new Test();
		new Thread(t, "测试线程1").start();
		new Thread(t, "测试线程2").start();
	}
	public  void run() {
		for (int i = 0; i < 5; i++) {
		/*	synchronized(thread) {*/
				if (i == 2) {
					System.out.println(Thread.currentThread().getName() + "i=2");
					try {
						System.out.println("线程" + Thread.currentThread().getName() + "被挂起!");
						wait();
						System.out.println("线程" + Thread.currentThread().getName() + "解除!");
					} catch (InterruptedException e) {
						// TODO Auto-generated catch block
						e.printStackTrace();
					}
				}
			
			if (i == 1) {
				System.out.println(Thread.currentThread().getName() + "i=1");
				notify();
				System.out.println("解除挂起");
			}
			if (i == 4) {
				System.out.println(Thread.currentThread().getName() + "i=4");
				notify();
				System.out.println("解除挂起");
			}
		}
	}

运行结果:

测试线程1i=1Exception in thread "测试线程1" Exception in thread "测试线程2" 
测试线程2i=1
java.lang.IllegalMonitorStateException
	at java.lang.Object.notify(Native Method)
	at com.test.Test.run(Test.java:27)
	at java.lang.Thread.run(Thread.java:748)
java.lang.IllegalMonitorStateException
	at java.lang.Object.notify(Native Method)
	at com.test.Test.run(Test.java:27)
	at java.lang.Thread.run(Thread.java:748)

产生原因:当所有线程都被挂起wait()后,程序无法继续进行而报的异常

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值