码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA多线程

时间:2015-11-04 17:59:50      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

class Mythread implements Runnable{
	private int ticket  =5;
	public void run(){
		for(int i =0;i<100;i++){
			//使用同步代码块解决多线程卖票资源共享的问题
			synchronized (this){
				if(ticket  > 0){
					 try{
					 	 Thread.sleep(300);
					 }catch(InterruptedException e){
					 	e.printStackTrace();
					 }
					 System.out.println("sell ticket = " + ticket--);
				}
			}
		}
	}
}

public class ThreadDemo04{
	public static void main(String[] args){
		Mythread mt = new Mythread();
		Thread t1 = new Thread(mt);
		Thread t2 = new Thread(mt);
		Thread t3 = new Thread(mt);
        t1.start();
        t2.start();
        t3.start();
	}
}


//同步方法
class Mythread implements Runnable{
	private int ticket = 5;
	public void run(){
		for(int i=0;i<100;i++){
			this.sale();
		}
	}
	//同步方法
	public synchronized void sale(){
		if(ticket > 0){
			try{
				Thread.sleep(300);
			}catch(InterruptedException e){
				e.printStackTrace();
			}
			System.out.println("sale ticket = " + ticket--);
		}
	}
}

public class ThreadDemo05{
	public static void main(String[] args){
		Mythread mt  = new Mythread();
		Thread t1  = new Thread(mt);
		Thread t2  = new Thread(mt);
		Thread t3  = new Thread(mt);	
		t1.start();
		t2.start();
		t3.start();
	}
}


JAVA多线程

标签:

原文地址:http://my.oschina.net/yonghan/blog/525840

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!