博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 面向对象
阅读量:5104 次
发布时间:2019-06-13

本文共 1673 字,大约阅读时间需要 5 分钟。

多态(Polymorphism): 意味着可以对不同类的对象使用同样的操作

   

def getPrice(object):    if isinstance(object, tuple):        return object[1]    elif isinstance(object, dict):        return object['price']    else:        return magic_network_method(object)

  

def length_message(x):    print("The length of", repr(x), 'is', len(x))length_message('panzidong')length_message([1,2,3,4])

result:

The length of 'panzidong' is 9The length of [1, 2, 3, 4] is 4

 

封装(Encapsulation): 对外部隐藏对象的工作细节

     "百灵鸟类"是“鸟类”的子类(subclass), 鸟类是百灵鸟类的超类(superclass)

     不同的子类,在使用超类的方法时, 有可以会需要重写(override)父类的方法

     如fly,有些子类不会飞,就需要重写,如企鹅。

Person类:

__metaclass__ = typeclass Person:    def setName(self, name):        self.name = name    def getName(self):        return self.name    def greet(self):        print("hello, world, i'a %s" % self.name)

# 如何让方法和特性变成私有

class Secretive:    def __inaccessible(self):        print('bet you can\'t see me...')    def accessible(self):        print("The secret message is:")        self.__inaccessible()s = Secretive()s.accessible()

result:

The secret message is:bet you can't see me...

 

继承(Inheritance): 以通用的类为基础建立专门的类对象

class Filter:    def init(self):        self.blocked = []    def filter(self, sequence):        return [x for x in sequence if x not in self.blocked]class SPAMFilter(Filter):    def init(self):        self.blocked = ['SPAM']print(issubclass(SPAMFilter, Filter))

   多个超类:

    

class Calculator:    def calculate(self, expression):        self.value = eval(expression)class Talker:    def talk(self):        print("hi, my value is", self.value)class TalkingCalculator(Calculator,Talker):    pass

 note: 先继承的类中的方法会重写后续继续的类中的方法。

转载于:https://www.cnblogs.com/lianghong881018/p/11081580.html

你可能感兴趣的文章
Silverlight实用窍门系列:19.Silverlight调用webservice上传多个文件【附带源码实例】...
查看>>
2016.3.31考试心得
查看>>
mmap和MappedByteBuffer
查看>>
Linux的基本操作
查看>>
转-求解最大连续子数组的算法
查看>>
对数器的使用
查看>>
OracleOraDb11g_home1TNSListener服务启动后停止,某些服务在未由其他服务或程序使用时将自己主动停止...
查看>>
Redis用户添加、分页、登录、注册、加关注案例
查看>>
练习2
查看>>
【ASP.NET】演绎GridView基本操作事件
查看>>
ubuntu无法解析主机错误与解决的方法
查看>>
尚学堂Java面试题整理
查看>>
MySQL表的四种分区类型
查看>>
[BZOJ 3489] A simple rmq problem 【可持久化树套树】
查看>>
STM32单片机使用注意事项
查看>>
swing入门教程
查看>>
好莱坞十大导演排名及其代表作,你看过多少?
查看>>
Loj #139
查看>>
StringBuffer是字符串缓冲区
查看>>
hihocoder1187 Divisors
查看>>