我正在尝试在Windows下创建一个守护程序线程,但我不知道我做错了什么。下面的代码充当普通线程:我没有看到写入控制台的“结束运行”。有什么建议吗?
def start(self):
self.isrunning = True
self.thread = threading.Thread(name="GPS Data", target=self.thread_run)
self.thread.setDaemon(True)
self.thread.run()
print "End Run"
def thread_run(self):
while self.isrunning:
data = self.readline()
print(data)
答案 0 :(得分:6)
以下内容:
self.thread.run()
应为:
self.thread.start()
否则,thread_run()
将在当前线程的上下文中调用,而不是在新线程的上下文中调用。
thread_run()
函数永远不会返回(因为self.isrunning
永远不会更改),代码永远不会到达print
语句。