Python的mixin模式

栏目: Python · 发布时间: 7年前

内容简介:Python的mixin模式

版权声明: 本文为博主原创文章,发表自Noogel’s notes。转载需向 我的邮箱 申请。

Mixin 是利用语言特性来简洁的实现组合模式,Python 中通过一定规范的多继承实现的。

使用时需要注意一下几点:

  • 类的单一职责
  • 对宿主类一无所知
  • 不存在对宿主类的方法调用,避免引入 MRO 查找顺序

如下例子,对于不同的 Mixin 类只负责实现自己的行为特征函数,然后 People 类继承这些特征,在自己的函数中使用这些特征。

#!/usr/bin/python
# coding: utf-8
"""
File: mixin_demo.py
Author: noogel <noogel@163.com>
Date: 2018-01-12 09:11
Description: mixin_demo
"""


class EatMixin(object):

    def eat(self):
        return "eat!"


class DrinkMixin(object):

    def drink(self):
        return "drink!"


class SleepMixin(object):

    def sleep(self):
        return "sleep!"


class People(EatMixin, DrinkMixin, SleepMixin):

    def __init__(self):
        print "People can ", self.eat()
        print "People can ", self.drink()
        print "People can ", self.sleep()


if __name__ == "__main__":
    print "Init people."
    people = People()
➜  dev-demo python mixin_demo.py 
Init people.
People can  eat!
People can  drink!
People can  sleep!

https://www.zhihu.com/question/20778853

如果此文章能给您带来小小的提升,不妨小额赞赏我一下,以鼓励我写出更好的文章!

Python的mixin模式

微信打赏

Python的mixin模式

支付宝打赏


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

具体数学(英文版第2版)

具体数学(英文版第2版)

[美] Ronald L. Graham、Donald E. Knuth、Oren Patashnik / 机械工业出版社 / 2002-8 / 49.00元

This book introduces the mathematics that supports advanced computer Programming and the analysis of algorithms. The primary aim of its well-known authors is to provide a solid and relevant base of ma......一起来看看 《具体数学(英文版第2版)》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码