Python论坛  - 讨论区

标题:Re: Re: [python-chinese] 嵌入python与线程

2006年04月25日 星期二 15:05

k1liang k1liang at 163.com
Tue Apr 25 15:05:40 HKT 2006

 
 
 
不太明白你这是什么意思
 
 
 



-----原始邮件-----
发件人:"吴俊玉" 
发送时间: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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号