首页 > 代码库 > 同步方法解决同步问题
同步方法解决同步问题
package tongbufangfa.cn; /* * 同步方法 解决同步问题 * 同步方法:使用synchronized 关键字将一个方法申明为 同步方法 * 格式为: * synchronized 方法返回值 方法名称 (参数列表){ * } */ //一个类实现runnable class TongBu implements Runnable{ private int tiket = 5; public void run(){ for (int i = 0; i < 100; i++) { //调用同步方法 this.sale(); } } //使用同步方法 public synchronized void sale(){ //判断票数是否大于0 ,大于0的话就卖票 if (tiket>0) { //设置线程之间延迟 try{Thread.sleep(50);} catch(Exception e){} System.out.println("tiket = "+ tiket--); } } } public class TongBuFangFa { public static void main(String[] args) { TongBu tb = new TongBu(); Thread tbd1 = new Thread(tb); Thread tbd2 = new Thread(tb); Thread tbd3 = new Thread(tb); tbd1.start(); tbd2.start(); tbd3.start(); } }
同步方法解决同步问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。