2006年04月25日 星期二 15:05
不太明白你这是什么意思 -----原始邮件----- 发件人:"吴俊玉" 发送时间:2006-04-25 14:52:06 收件人:python-chinese at lists.python.cn 抄送:(无) 主题:Re: [python-chinese] 嵌入python与线程 这么说吧! 什么都不管看看下面这段程序那里有问题 import thread import threading class Tank: ee=threading.Event() def __init__(self,i): self.cur=i def forward(self): self.cur=self.cur+1 self.__class__.ee.clear() def run(self): while(1): //忽然想到这句话有没有问题啊? self.forward() def wakeup(self): self.__class__.ee.set() def start(self): thread.start_new_thread(self.run,()) if __name__=="__main__": a=Tank(123) a.start() i=1 while(i<10): i=i+1 a.wakeup() print a.cur 另外Python允许有类属性,也就相当java/c++中的静态数据 有没有静态方法呢? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060425/1b8eb686/attachment-0001.htm
Zeuux © 2025
京ICP备05028076号