标签:线程 div port 假死 nbsp blog class 多线程 reading
场景:在一个事件中调用一个函数,但是这个函数执行的时间非常的长,此过程中拖动界面的时候会使得界面进入未响应状态,直到函数执行完才可以ok
解决方法:
在调用函数的时候使用多线程调用
import threading thread_obj = threading(func, arg=(para1,)) thread_obj.start()
标签:线程 div port 假死 nbsp blog class 多线程 reading
原文地址:http://www.cnblogs.com/wangjian8888/p/6115734.html