public static Object obj = new Object();
public static void main(String[] args) {
// 演示waiting
new Thread(new Runnable(){
@Override
public void run() {
// 设置线程的任务
while(true) {
synchronized (obj) {
try {
System.out.println(Thread.currentThread().getName() + "--->获取到锁对象了。"
+ "但是我调用给了wait方法,进入到无限等待状态,释放锁对象");
obj.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName() + "---->从wait状态中醒过来了,获取到了锁对象,继续执行了。");
}
}
}
},"等待线程").start();
//////////////////////////////////////////////////////////////////////////
new Thread(new Runnable() {
@Override
public void run() {
// 设置线程任务
while(true){
try {
System.out.println(Thread.currentThread().getName() + "---->休眠3秒钟");
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
// 让唤醒线程使用的和等待线程的是同一把锁对象
synchronized (obj) {
System.out.println(Thread.currentThread().getName() + "---->获取到了锁对象,"
+ "调用了notify方法,释放锁对象") ;
obj.notifyAll();
}
}
}
},"唤醒线程").start();