鞋子哥哥永垂不朽吧 关注:4,445贴子:48,643
  • 0回复贴,共1

【Python教程---python for android】简单线程使用

只看楼主收藏回复

#线程模块有thread和threading
#这里只讲threading的简单用法
from threading import Thread,_sleep
from thread import exit_thread
#exit_thread是用来退出线程的
#主要使用threading模块中的Thread类
'''
__init__(self, group=None, target=None, name=None,
args=(), kwargs=None, verbose=None)
类Thread
target是线程中执行的函数名
name是线程名称
args=()其中参数是target调用的函数的参数
'''
#方式一
#---------------------------------------
'''
#无参数
def test():
print 'test'
t = Thread(target=test)#创建线程
#target不可省略
t.start()
#启动线程
input()
'''
'''
#带参数
def test(a,b):
print 'a: ',a
print 'b: ',b
t = Thread(target=test,args=(1,2))#创建线程
#target不可省略
t.start()
#启动线程
input()
'''
#---------------------------------------
'''
#方式二
#继承Thread类
class Test(Thread):
def __init__(s):
Thread.__init__(s)#不可少
s.running = True
s.ispause = False
s.i = 0
def pause(s,Bool):
s.ispause = Bool
def stop(s):
s.running = False
def run(s):#该方法是重写Thread中的方法
s.running = True
while s.running:
if not s.running:
break
if s.ispause:
continue
print s.i
s.i += 1
_sleep(1)
print '线程退出'
exit_thread()
#当s.running为假时退出线程
t = Test()
while True:
command = raw_input('>>>')
if command == 'exit':
t.stop()
break
if command == 'start':
if not t.isAlive():
#如果线程未激活则允许
t.start()
if command == 'stop':
if t.isAlive():
t.stop()
if command == 'pause':
if t.isAlive():
t.pause(True)
if command == 'goon':
if t.isAlive():
t.pause(False)
if command == 'check':
print t.isAlive()
'''


1楼2014-01-14 14:52回复