赞
踩
困成狗,今天完善我的树的时候发现在我的MCTS树里面执行画图plt.show()简直是超级耗时....然后身为资深学渣的我想到了靠多线程处理这个....
- def target():
- print ('the curent threading %s is running' % threading.current_thread().name)
-
- print ('the curent threading %s is running11111111' % threading.current_thread().name)
- t = threading.Thread(target=target)
- t.start()
- #t.join()
- print ('the curent threading %s is ended11111111111' % threading.current_thread().name)
上面输出:
the curent threading MainThread is running11111111
the curent threading Thread-1 is running
the curent threading MainThread is ended11111111111
由于我们注释掉了t.join(),所以上面的运行是:主线程和子线程交替独立执行。
如果我们把t.join()的注释去掉,那么结果是先打印“the curent threading MainThread is running11111111”,然后执行完target()函数,才又回到主线程去继续执行“the curent threading MainThread is ended11111111111”的。相当于单片机中的中断概念了。
要注意的一点是
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。