forked from flypythoncom/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththreading.py
More file actions
37 lines (31 loc) · 910 Bytes
/
threading.py
File metadata and controls
37 lines (31 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import threading
from time import sleep,ctime
loops = [4,2]
class ThreadFunc(object):
def __init__(self,func,args,name=""):
self.name = name
self.name = func
self.args = args
def __call__(self):
apply(self.func,slef.args)
def loop(nloop,nsec):
print "start loop:",nloop,"at:",ctime()
sleep(nsec)
print "loop",nloop,"done at:",ctime()
def main():
print "starting at:",ctime()
threads = []
nloops = range(len(loops))
#创建线程
for i in nloops:
t = threading.Thread(target = loop,args=(i,loops[i]))
threads.append(t);
#启动线程
for i in nloops:
threads[i].start()
#等待线程
for i in nloops:
threads[i].join()
print "all DONE at:",ctime()
if __name__ == "__main__":
main()