Check if the Main Thread is still alive from another thread

…衆ロ難τιáo~ 提交于 2019-11-30 15:43:54
  • For Python 2.7 you can try this:

    for i in threading.enumerate():
       if i.name == "MainThread":
           print i.is_alive()
    

    The usage of lower camel case in function names is deprecated and so you should be using i.is_alive() instead of i.isAlive().

  • If you like one-liners try this:

    is_main_thread_active = lambda : any((i.name == "MainThread") and i.is_alive() for i in threading.enumerate())
    

    Then call is_main_thread_active() to check if the Main Thread is active.

    For one time use, however, you could use this directly without creating a function.

    any((i.name == "MainThread") and i.is_alive() for i in threading.enumerate())

  • Check this page for more info about threading.

  • In python 3.4 a dedicated function to return the main thread exists and so you can use this one liner to see if your main thread is still alive..

    threading.main_thread().is_alive()
    

Hope this helps you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!