#!/usr/bin/python
–– coding: UTF-8 ––
class Parent: # 定义父类
parentAttr = 100
def init(self):
print “调用父类构造函数”
def parentMethod(s服务器托管网elf):
print ‘调用父类方法’
def setAttr(self, attr):
Parent.parentAttr = attr
def getAttr(self):
print “父类属性 :”, Parent.parentAttr
class Child(Parent): # 定义子类
def init(self):
prin服务器托管网t “调用子类构造方法”
def childMethod(self):
print ‘调用子类方法’
c = Child() # 实例化子类
c.childMethod() # 调用子类的方法
c.parentMethod() # 调用父类方法
c.setAttr(200) # 再次调用父类的方法 – 设置属性值
c.getAttr() # 再次调用父类的方法 – 获取属性值
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: Apache Pulsar 在腾讯云上的最佳实践
高春辉、王春生、朱峰:关于开源创业的15件小事 导语 由 StreamNative 主办的 Pulsar Meetup Beijing 2023 在2023年10月14日完美落幕,本次活动大咖云集,来自腾讯、滴滴、华为、智联招聘、RisingWave 和 St…