About the diffrence of wait timed_wait and block in java

本文通过两个示例对比了Java中使用synchronized关键字与ReentrantLock实现同步的区别,展示了不同情况下线程的状态变化,包括TIMED_WAITING、BLOCKED及WAITING等状态,并探讨了这些状态的具体含义。

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

import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

/**
 * 
 * @author daxin
 *
 */
public class Main1 {

	static Lock lock = new ReentrantLock();

	public static void main(String[] args) throws Exception {

		// TIMED_WAITING
		// Thread.sleep(5000*5000);

		// ----------------synchronized---------------------
		// TIMED_WAITING
		new Thread(target1, "1").start();
		Thread.sleep(200);
		// BLOCKED
		new Thread(target1, "2").start();

		// ----------------lock------------------
		// TIMED_WAITING
		new Thread(target2, "3").start();
		Thread.sleep(200);
		// WAITING
		new Thread(target2, "4").start();

	}

	public static synchronized void get() {

		try {
			Thread.sleep(5000 * 5000);
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} finally {

		}
	}

	public static void get2() {

		try {
			lock.lock();
			Thread.sleep(5000 * 5000);
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} finally {
			lock.unlock();
		}
	}

	static Runnable target1 = new Runnable() {

		@Override
		public void run() {
			// TODO Auto-generated method stub
			get();
		}
	};

	static Runnable target2 = new Runnable() {

		@Override
		public void run() {
			// TODO Auto-generated method stub
			get2();
		}
	};

}

 

转载于:https://www.cnblogs.com/leodaxin/p/7417304.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值