Java中线程安全(synchronized)

package tk.javazhangwei.thread.syn;

/***
 * 线程安全问题
 * 
 * @author zw
 *
 */
public class SynDemo01 {
	public static void main(String[] args) {
		Web12306 web = new Web12306();
		Thread th = new Thread(web, "黄牛");
		Thread th1 = new Thread(web, "农民工");
		Thread th2 = new Thread(web, "学生");
		Thread th3 = new Thread(web, "商人");

		th.start();
		th1.start();
		th2.start();
		th3.start();
	}
}

class Web12306 implements Runnable {
	private int num = 10;
	private boolean f = true;

	@Override
	public void run() {
		while (f) {
			test1();
		}
	}
	//同步块
	public void test1() {
		synchronized (this) {
			if (num <= 0) {
				f = false;
				return;
			}
			try {
				Thread.sleep(1000);
			} catch (InterruptedException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			System.out.println(Thread.currentThread().getName() + ",恭喜您,抢到票了,编号为:" + num--);
		}
	}
	//同步方法
	public synchronized void test() {
		if (num <= 0) {
			f = false;
			return;
		}
		try {
			Thread.sleep(1000);
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		System.out.println(Thread.currentThread().getName() + ",恭喜您,抢到票了,编号为:" + num--);
	}
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值