• 线程数据不安全现象


    线程数据不安全现象

    from threading import Thread
    n = 0
    def add():
        for i in range(500000):
            global n
            n += 1
    def sub():
        for i in range(500000):
            global n
            n -= 1
    
    t_l = []
    for i in range(2):
        t1 = Thread(target=add)
        t1.start()
        t2 = Thread(target=sub)
        t2.start()
        t_l.append(t1)
        t_l.append(t2)
    for t in t_l:
        t.join()
    print(n)
    #结果n不为0
    
    from threading import Thread
    import time
    n = []
    def append():
        for i in range(500000):
            n.append(1)
    def pop():
        for i in range(500000):
            if not n:
                time.sleep(0.0000001)
            n.pop()
    
    t_l = []
    for i in range(20):
        t1 = Thread(target=append)
        t1.start()
        t2 = Thread(target=pop)
        t2.start()
        t_l.append(t1)
        t_l.append(t2)
    for t in t_l:
        t.join()
    print(n)
    #使用append pop方法数据安全
    
    += -=  *= /= while if 数据不安全   + 和 赋值是分开的两个操作
    append pop strip数据安全 列表中的方法或者字典中的方法去操作全局变量的时候 数据安全的
    线程之间也存在数据不安全
    

    线程锁

    from threading import Thread,Lock
    n = 0
    def add(lock):
        for i in range(500000):
            global n
            with lock:
                n += 1
    def sub(lock):
        for i in range(500000):
            global n
            with lock:
                n -= 1
    
    t_l = []
    lock = Lock()
    for i in range(2):
        t1 = Thread(target=add,args=(lock,))
        t1.start()
        t2 = Thread(target=sub,args=(lock,))
        t2.start()
        t_l.append(t1)
        t_l.append(t2)
    for t in t_l:
        t.join()
    print(n)
    
    from threading import Thread,Lock
    import time
    n = []
    def append():
        for i in range(500000):
            n.append(1)
    def pop(lock):
        for i in range(500000):
            with lock:
                if not n:
                    time.sleep(0.0000001)    # 强制CPU轮转
                n.pop()
    
    t_l = []
    lock = Lock()
    for i in range(20):
        t1 = Thread(target=append)
        t1.start()
        t2 = Thread(target=pop,args=(lock,))
        t2.start()
        t_l.append(t1)
        t_l.append(t2)
    for t in t_l:
        t.join()
    print(n)
    
    不要操作全局变量,不要在类里操作静态变量
    += -= *= /= if while 数据不安全
    queue logging 数据安全的
    

    单例模式

    import time
    class A:
        from threading import Lock
        __instance = None
        lock = Lock()
        def __new__(cls, *args, **kwargs):
            with cls.lock:
                if not cls.__instance:
                    time.sleep(0.000001)   # cpu轮转
                    cls.__instance = super().__new__(cls)
            return cls.__instance
    
    def func():
        a = A()
        print(a)
    from threading import Thread
    for i in range(10):
        Thread(target=func).start()
    
  • 相关阅读:
    Windows | Linux/Ubuntu 16.04 安装编辑器 Sublime Text 3
    Linux/Ubuntu 16.04 好用的视频播放器 SMPlayer
    Webpack实战(二):webpack-dev-server的介绍与用法
    Webpack实战(一):Webpack打包工具安装及参数配置
    第一天开通博客
    Spring Cloud Eureka 服务注册与发现中心
    使用 Docker Compose 部署 Nginx 配置虚拟主机
    Spring Boot 中 Redis 的使用
    Linux 安装 Docker Compose 及常用命令汇总
    Spring Boot 集成 Swagger2 构建 RESTful API 文档
  • 原文地址:https://www.cnblogs.com/wyh0717/p/13379849.html
Copyright © 2020-2023  润新知