Blogger Information
Blog 75
fans 0
comment 0
visits 55130
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
python之抽象基类abc.abstractmethod
聆听的博客
Original
535 people have browsed it

有时,我们抽象出一个基类,知道要有哪些方法,但只是抽象方法,并不实现功能,只能继承,而不能被实例化,但子类必须要实现该方法,这就需要用到抽象基类,在很多时候用到的很多,小猿圈加加刚学到的,把这个分享给大家。


实例

import abc
 
class Foo(abc.ABC):
    @abc.abstractmethod
    def fun(self):
        pass
 
a = Foo()
 
# 实例化报错
# TypeError: Can't instantiate abstract class Foo with abstract methods fun

运行实例 »

点击 "运行实例" 按钮查看在线实例

 下面子类继承该方法

实例

class Sub_foo(Foo):
 
 
    def f(self):
        print('This is sub foo!')
 
c = Sub_foo()
# 子类并没有实现fun 方法,实例化子类sub_foo同样报错
# TypeError: Can't instantiate abstract class Sub_foo with abstract methods fun

运行实例 »

点击 "运行实例" 按钮查看在线实例

 我们在子类实现fun方法:

实例

class Sub_foo(Foo):
    def fun(self):
        print("From sub_foo")
 
    def f(self):
        print('This is sub foo!')
 
c = Sub_foo()
c.fun()
c.f()

运行实例 »

点击 "运行实例" 按钮查看在线实例

 输出:
From sub_foo
This is sub foo!
 但是注意,如果这时你实例化Foo,仍然是报错的,因为抽象基类只能继承而不能实例化,子类要实例化

必须先实现该方法。

 为了理解抽象基类,你可以这么理解,我们有蔬菜这个抽象基类,有黄瓜,番茄,芹菜等,但你永远只能吃得到黄瓜,番茄这些,而不能吃到所谓的“蔬菜”,这样理解起来容易多了吧,小编从小猿圈那取来的精,感觉还不错,有兴趣可以去看一下。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post