美文网首页
多态和封装

多态和封装

作者: 大冰S | 来源:发表于2019-12-02 09:55 被阅读0次

    多态和封装

    鸭子类型

    多态

    多态:指允许不同类的对象对同一消息做出响应。即同一消息可以根据发送对象不同而采用多种不同的行为方式

    python中的多态
    java中的多态

    python中传参,不需要检查参数的类型,python天生带多态属性

    封装

    封装:将某部分隐藏,在代码块外部不能调用

    • 实现封装的方法:对属性和方法的“私有化”命名,即以双下划线作为名称的开始

    class Foo:
    ... __name = 'su'
    ... book = 'python'
    ... def get_name(self):
    ... return Foo.__name
    ...
    f = Foo()
    dir(f)
    ['_Foo__name', 'class', 'delattr', 'dict', 'dir', 'doc', 'eq', 'format', 'ge', 'getattribute', 'gt', 'hash', 'init', 'init_subclass', 'le', 'lt', 'module', 'ne', 'new', 'reduce', 'reduce_ex', 'repr', 'setattr', 'sizeof', 'str', 'subclasshook', 'weakref', 'book', 'get_name']
    f.book
    'python'
    f.__name
    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    AttributeError: 'Foo' object has no attribute '__name'
    f.get_name()
    'su'

    相关文章

      网友评论

          本文标题:多态和封装

          本文链接:https://www.haomeiwen.com/subject/qfdxgctx.html