香港云主机最佳企业级服务商!

ADSL拨号VPS包含了中国大陆(联通,移动,电信,)

中国香港,国外拨号VPS。

当前位置:云主机 > python >

电信ADSL拨号VPS
联通ADSL拨号VPS
移动ADSL拨号VPS

python中类的一些方法分析


时间:2021-11-09 10:24 作者:admin610456


本文实例分析了python/' target='_blank'>python中类的一些方法,分享给大家供大家参考。具体分析如下:

先来看看下面这段代码:

class Super:   def delegate(self):     self.action()      class Provider(Super):   def action(self):     print 'in Provider.action'      x = Provider() x.delegate() 

本文实例运行环境为Python2.7.6

运行结果如下:

in Provider.action

在Super类中定义delegate()方法,delegate中调用self.action,在Provider子类中实现action方法。子类调用父类的delegate方法时,实际是调用自己的action方法。。

总之一句话:

这里子类实现了父类delegate中所期望的action方法

再来看看下面这段代码:

class Super:   def delegate(self):     self.action()   def method(self):     print 'super method'    class Inherit(Super):   pass  class Replace(Super):   def method(self):     print "replace method"      class Extended(Super):   def method(self):     print 'in extended class'     Super.method(self)     print 'out extended class'    class Provider(Super):   def action(self):     print 'in Provider.action'      x = Inherit() x.method() print '*'*50  y = Replace() y.method() print '*'*50  z = Extended() z.method() print '*'*50  x = Provider() x.delegate() 

运行结果如下:

super method ************************************************** replace method ************************************************** in extended class super method out extended class ************************************************** in Provider.action 

分别继承父类的方法,替换父类的方法,扩展了父类的方法
Super类定义了delegate方法并期待子类实现action函数,Provider子类实现了action方法.

相信本文所述对大家Python程序设计的学习有一定的借鉴价值。

(责任编辑:admin)






帮助中心
会员注册
找回密码
新闻中心
快捷通道
域名登录面板
虚机登录面板
云主机登录面板
关于我们
关于我们
联系我们
联系方式

售前咨询:17830004266(重庆移动)

企业QQ:383546523

《中华人民共和国工业和信息化部》 编号:ICP备00012341号

Copyright © 2002 -2018 香港云主机 版权所有
声明:香港云主机品牌标志、品牌吉祥物均已注册商标,版权所有,窃用必究

云官方微信

在线客服

  • 企业QQ: 点击这里给我发消息
  • 技术支持:383546523

  • 公司总台电话:17830004266(重庆移动)
  • 售前咨询热线:17830004266(重庆移动)