Thread vs. Threading

后端 未结 5 1888
耶瑟儿~
耶瑟儿~ 2020-11-29 22:01

What\'s the difference between the threading and thread modules in Python?

5条回答
  •  抹茶落季
    2020-11-29 22:38

    The module "Thread" treats a thread as a function, while the module "threading" is implemented in an object oriented way, i.e. every thread corresponds to an object.

提交回复
热议问题