• 同步代码块


    package tongbu.cn;
    /*
     * 多个线程同时操作同一资源,会引起卖出的票为负数,为了解决这个问题,就要使用同步
     * 所谓同步,就是多个操作在同一时间段内 只能有一个线程进行
     * 同步代码块的格式
     * synchronized(同步对象){
     * 需要同步的代码
     * }
     */
    //一个类实现runnable 
    class TongBuDaiMa implements Runnable{
        private int tiket = 5;
        public void run(){
            for (int i = 0; i < 100; i++) {
                //判断票数是否大于0 ,大于0的话就卖票
                //同步代码块
                synchronized (this) {
                
                if (tiket>0) {
                    //设置线程之间延迟
                    try{Thread.sleep(50);}
                    catch(Exception e){}
                    System.out.println("tiket = "+ tiket--);
                }
            }
        }
    }
    }
    public class TongBu {
        public static void main(String[] args) {
            TongBuDaiMa tb = new TongBuDaiMa();
            Thread tbd1 = new Thread(tb);
            Thread tbd2 = new Thread(tb);
            Thread tbd3 = new Thread(tb);
            tbd1.start();
            tbd2.start();
            tbd3.start();
        }
    
    }
  • 相关阅读:
    Shared variable in python's multiprocessing
    File checksum
    Windows createprocess linux fork
    人工调用系统调用
    如何提高团队开发效率
    Redis' High Availability
    并发MD5计算方法
    开博宣言
    NYOJ 55 懒省事的小明
    HDU 1237 简单计算器
  • 原文地址:https://www.cnblogs.com/yuanyuan2017/p/6944887.html
Copyright © 2020-2023  润新知