简单公共数值操作(1)——数值

import threading
import time
 
counter = 0
mutex = threading.Lock()
 
class MyThread(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)
 
    def run(self):
        global counter, mutex
        time.sleep(1);
        if mutex.acquire():
            counter += 10
            print ("I am %s, set counter:%s" % (self.name, counter))
            mutex.release()
 
if __name__ == "__main__":
    for i in range(0, 100):
        my_thread = MyThread()
        my_thread.start()
不是所有的成功都是坐享其成
原文地址:https://www.cnblogs.com/Skyda/p/9220693.html