哈哈,2.5以后可用。自动加锁释放,如同操作文件打开关闭一样。

#!/usr/bin/env python
# -*- coding: utf-8 -*-


import threading
import logging

logging.basicConfig(level=logging.DEBUG,
                   format='(%(threadName)-10s)%(message)s', )

def threading_with(statement):
    with statement:
        logging.debug('%s acquired via with' %statement)

def threading_not_with(statement):
    statement.acquire()
    try:
        logging.debug('%s acquired directly' % statement)
    finally:
        statement.release()

if __name__ == "__main__":
    lock = threading.Lock()
    rlock = threading.RLock()
    condition = threading.Condition()
    mutex = threading.Semaphore(1)
    threading_synchronization_list = \
                                   [lock, rlock, condition, mutex]

    for statement in threading_synchronization_list :
        t1 = threading.Thread(target=threading_with,
        args=(statement,))
        t2 = threading.Thread(target=threading_not_with,
        args=(statement,))
        t1.start()
        t2.start()
        t1.join()
        t2.join()
    
        

用with实现python的threading,新鲜啊

相关文章:

  • 2022-12-23
  • 2021-05-30
  • 2021-06-21
  • 2021-06-18
  • 2021-06-19
  • 2021-10-05
  • 2021-06-12
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-24
相关资源
相似解决方案