欢迎来到山村网

Python抽象类的新写法

2019-03-02 14:08:18浏览:312 来源:山村网   
核心摘要:  这篇文章主要介绍了Python抽象类的新写法,本文讲解了老版本中的hack方式实现抽象类,以及2.7以后使用abstractmethod模块写抽

  这篇文章主要介绍了Python抽象类的新写法,本文讲解了老版本中的hack方式实现抽象类,以及2.7以后使用abstractmethod模块写抽象类的方法,需要的朋友可以参考下

  记得之前learn python一书里面,因为当时没有官方支持,只能通过hack的方式实现抽象方法,具体如下 最简单的写法

  ?

1 2 3 4 5 6 7 8 9 10 11 class MyCls(): def foo(self): print('method no implement') 运行的例子 >>> a = MyCls() >>> a.foo() method no implement >>>

  这样虽然可以用,但是提示不明显,还是容易误用,当然,还有更好的方法 较为可以接受的写法

  ?

1 2 3 class MyCls(): def foo(self): raise Exception('no implement exception', 'foo method need implement')

  一个简单的用例

  ?

1 2 3 4 5 6 >>> a = MyCls() >>> a.foo() Traceback (most recent call last): File "<interactive input>", line 1, in <module> File "<clipboard>", line 3, in foo Exception: ('no implement exception', 'foo method need implement')

  这就是2.7之前的写法了,2.7给了我们新的支持方法!abc模块(abstruct base class),这个在py3k中已经实现,算是back port吧。

  我们来看看新的写法

  ?

1 2 3 4 5 6 7 8 9 from abc import ABCmeta from abc import ABCmeta,abstractmethod class Foo(): __metaclass__ = ABCmeta @abstractmethod def bar(self): pass

  运行效果

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 >>> class B(Foo): ... def bar(self): ... pass ... >>> B() <__main__.B object at 0x02EE7B50> >>> B().bar() >>> class C(Foo): ... pass ... >>> C().bar() Traceback (most recent call last): File "<interactive input>", line 1, in <module> TypeError: Can't instantiate abstract class C with abstract methods bar >>>
(责任编辑:豆豆)
下一篇:

Python的time模块中的常用方法整理

上一篇:

python数组复制拷贝的实现方法

  • 信息二维码

    手机看新闻

  • 分享到
打赏
免责声明
• 
本文仅代表作者个人观点,本站未对其内容进行核实,请读者仅做参考,如若文中涉及有违公德、触犯法律的内容,一经发现,立即删除,作者需自行承担相应责任。涉及到版权或其他问题,请及时联系我们 xfptx@outlook.com