面向接口编程
目录
Python中没有对接口的直接支持,但是实际上面向接口编程是一种编程思维、编程范式,与语言是否有关键字支持无关。Python中面向 接口编程我们一般使用 abc:
In [1]: import abc
In [2]: class Bird(abc.ABC):
...: @abc.abstractmethod
...: def fly(self):
...: pass
...:
In [3]: class Parrot(Bird):
...: pass
...:
In [4]: Parrot().fly()
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-4-beb5d307db79> in <module>
----> 1 Parrot().fly()
TypeError: Can't instantiate abstract class Parrot with abstract methods fly
In [5]: class Parrot(Bird):
...: def fly(self):
...: print("flying")
...:
In [6]: Parrot().fly()
flying
可以看到,如果我们继承了 Bird
却没有实现接口的话,直接调用就会报错。
更多文章
本站热门
- socks5 协议详解
- zerotier简明教程
- 搞定面试中的系统设计题
- 用peewee代替SQLAlchemy
- frp 源码阅读与分析(一):流程和概念
- Golang(Go语言)中实现典型的fork调用
- DNSCrypt简明教程
- 一个Gunicorn worker数量引发的血案
- Golang validator使用教程
- Docker组件介绍(一):runc和containerd
- Docker组件介绍(二):shim, docker-init和docker-proxy
- 使用Go语言实现一个异步任务框架
- 协程(coroutine)简介 - 什么是协程?
- SQLAlchemy简明教程
- Go Module 简明教程