from threading import import time class MyThread(Thread): def run (self): selfifdo = True; while selfifdo: print 'I am running' timesleep(2) def stop (self): print 'I am stopping it' selfifdo = False; tr = MyThread()trsetDaemon(True)trstart()print 'I will stop it'timesleep(5)trstop()trjoin()
描述 Python time sleep() 函数推迟调用线程的运行,可通过参数secs指秒数,表示进程挂起的时间。
Python有一个名为time的模块,该模块提供了一些有用的功能来处理与时间有关的任务。其中一种常用的函数是sleep()。 sleep()函数将当前线程的执行暂停给定的秒数。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)