程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> Python RuntimeError: thread.__init__() not called解決方法

Python RuntimeError: thread.__init__() not called解決方法

編輯:更多關於編程

       這篇文章主要介紹了Python RuntimeError: thread.__init__() not called解決方法,需要的朋友可以參考下

      在寫一個多線程類的時候調用報錯

      RuntimeError: thread.__init__() not called

       代碼如下:

      class NotifyTread(threading.Thread):

      def __init__(self, params):

      threading.Thread.__init__(self) #here。。。。。。

      self.params = params

      def run(self):

      print "start notify............"

      time.sleep(10)

      print notify_tran(self.params)

      print "end notify.............."

      在init中要先初始化Thread,然後在給參數賦值,就能解決了。

      也就是不能缺少

      threading.Thread.__init__(self)

      這是一個使用的注意地方。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved