概述
#!/usr/bin/python
# # -*- coding: UTF-8 -*-
class Parent:
parentint = 100
def __init__(self):
print("调用父类构造函数")
def parentfar(self):
print("调用父类方法")
def setint(self,a):
Parent.parentint = a
def getint(self):
print("父类属性",Parent.parentint)
class Child(Parent):
def __init__(self):
print("调用子类构造方法")
def childfar(self):
print("调用子类方法")
c = Child()
c.childfar()
c.parentfar()
c.setint(200)
c.getint()
#Python运算符重载
class Calculate:
def __init__(self,a,b):
self.a = a
self.b = b
def __str__(self):
return "计算两组数据:(%d,%d)"%(self.a, self.b)
def __add__(self, other):
return Calculate(self.a + other.a, self.b + other.b)
i = Calculate(10,20)
j = Calculate(20,30)
print(i + j)
继承完全可以理解成类之间的类型和子类型关系。
在python中继承中的一些特点:
1:在继承中基类的构造(init()方法)不会被自动调用,它需要在其派生类的构造中亲自专门调用。
2:在调用基类的方法时,需要加上基类的类名前缀,且需要带上self参数变量。区别于在类中调用普通函数时并不需要带上self参数
3:Python总是首先查找对应类型的方法,如果它不能在派生类中找到对应的方法,它才开始到基类中逐个查找。(先在本类中查找调用的方法,找不到才去基类中找)。
最后
以上就是欢喜蜜蜂为你收集整理的python 类(Class)初步使用 (中)的全部内容,希望文章能够帮你解决python 类(Class)初步使用 (中)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复