摘要: '''Created on Mar 24, 2013@author: benjamin'''import threading, timeclass Boy(threading.Thread): def __init__(self, cond, name): super(Boy, self).__init__() self.__cond = cond self.__name = name def run(self):# Acquire the underlying lock. self.__cond.acq... 阅读全文
posted @ 2013-03-25 00:02 PenguinChi 阅读(302) 评论(0) 推荐(0)