Python的等效Java函数wait(),notify(),synchronized

前端之家收集整理的这篇文章主要介绍了Python的等效Java函数wait(),notify(),synchronized前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我必须在Python 2.7中编写一个类,我有一些问题.
我最近来自java背景和学习python

如果我必须在java中做,我会写这些

public class CommandSender extends Thread {
    private boolean isTimeOut;
    private boolean running;
    private ArrayList

我现在做了什么

class CommandSender(threading.Thread)

     def __init__(self):
         threading.Thread.__init__(self)
         self.waiting_list = []
         self.running = False
         self.is-time_out = False
         self.my_lock = threading.Lock()

     def run(self):
         self.running = True
         with self.my_lock:
             while len(self.waiting_list) == 0 and self.running:
                 # Don't know what I have to do here
             while len(self.waiting_list) != 0 and self.running:
                 # Do my stuff

     def send_command(self,cmd):
         with self.my_lock:
             self.waiting_list.append(cmd)
             # Notify ?

     def is_time_out(self):
         with self.my_lock:
             return self.is_rime_out

我为每个实例使用一个锁,因为只有一个CommandSender实例

那么如何进行等待/通知过程?我的同步块是否很好用?

谢谢 !

最佳答案
首先,您应该知道Python的global interpreter lock不允许多个线程同时运行Python代码(尽管线程可以运行,例如C代码,例如使用本机代码模块,如果它们适当地释放GIL).如果您需要使用Python代码来使用多核cpu,请查看multiprocessing模块.

现在,直接等效于threading.Event类.创建一个Event对象,然后使用wait和set.

原文链接:https://www.f2er.com/python/439760.html

猜你在找的Python相关文章