摘要: #运行环境:python3.5from abc import ABCMeta,abstractmethodclass IQueue(object,metaclass=ABCMeta):#设置为抽象类 @abstractmethod #设置为抽象方法,如果子类没有实现此方法,将会报错 de... 阅读全文
posted @ 2015-12-09 17:04 pycrawler 阅读(258) 评论(0) 推荐(0)