Python:类的继承
Python:类的继承
Python 同样支持类的继承。派生类的定义如下所示:
class DerivedClass(BaseClass):
.
.
.
子类(派生类/DerivedClass)会继承父类(基类/BaseClass)的属性和方法。
BaseClassName(实例中的基类名)必须与派生类定义在一个作用域内。除了类,还可以用表达式,基类定义在另一个模块中时这一点非常有用:
class DerivedClassName(modname.BaseClassName):
实例:
# !/usr/bin/python
# -*- coding: UTF-8 -*-
class Parent: # 定义父类
parentAttr = 100
def __init__(self):
print(
"调用父类构造函数")
def parentMethod(self):
print(
'调用父类方法')
def setAttr(self, attr):
Parent.parentAttr = attr
def getAttr(self):
print(
"父类属性 :"), Parent.parentAttr
class Child(Parent): # 定义子类
def __init__(self):
print(
"调用子类构造方法")
def childMethod(self):
print(
'调用子类方法')
c = Child() # 实例化子类
c.childMethod() # 调用子类的方法
c.parentMethod() # 调用父类方法
c.setAttr(200) # 再次调用父类的方法 - 设置属性值
c.getAttr() # 再次调用父类的方法 - 获取属性值
python(列表、list、全)pythonlist
http://www.zh-cjh.com/wenzhangguilei/2512.html
文章归类、所有文章列表、LISTLIST
http://www.zh-cjh.com/wangzhangonggao/2195.html
2、本资源基本为原创,部分来源其他付费资源平台或互联网收集,如有侵权请联系及时处理。
3、本站大部分文章的截图来源实验测试环境,请不要在生产环境中随意模仿,以免带来灾难性后果。
转载请保留出处: www.zh-cjh.com珠海陈坚浩博客 » Python:类的继承
作者: cjh
手机扫一扫,手机上查看此文章: |
一切源于价值!
其他 模板文件不存在: ./template/plugins/comment/pc/index.htm