classpeople: name = 'python' defmyname(self): print('my name is',self.name) defprt(self): print(self) defprt1(other): print(other) a = people() print(a.name) b = people() a.myname() a.prt() a.prt1() b.prt() # 能够看出a/b的地址是不同的
python my name is python <__main__.people object at 0x00000211984A00B8> <__main__.people object at 0x00000211984A00B8> <__main__.people object at 0x00000211984A0390>
classmyclass(): def__init__(self,name,height,weight): self.n = name self.h = height self.w = weight defspeak(self): print('my name is %s, my height is %d cm, my weight is %.1fkg' % (self.n,self.h,self.w)) a = myclass('wanyu',175,70) a.speak()
my name is wanyu, my height is 175 cm, my weight is 70.0kg
二、继承
语法:class DerivedClassName(modname.BaseClassName):
继承本文件中的类,则模块名可省略,子类继承父类,父类也叫基类
有关父类中__init__的继承与否,又会分为三种形式:
1.子类需要自动调用父类的方法
子类不重写__init__()方法,实例化子类后,会自动调用父类的__init__()的方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
classpeople(): name = ''#规范 height = 0 weight = 0 def__init__(self,n,h,w): self.name = n # 对比上一段函数,详细的命名放在前面在调用时候更清晰的知道意思,上一段代码写的时候没考虑 self.height = h self.weight = w defspeak(self): print('my name is %s, my height is %d cm, my weight is %.1fkg' % (self.name,self.height,self.weight))
classstudent(people): pass#调用父类的构造函数 a = student('wanyu',175,70) a.speak()
my name is wanyu, my height is 175 cm, my weight is 70.0kg
classpeople(): name = ''#规范 height = 0 weight = 0 def__init__(self,n,h,w): self.name = n self.height = h self.weight = w defspeak(self): print('my name is %s, my height is %d cm, my weight is %.1fkg' % (self.name,self.height,self.weight))
classstudent(people): grade = '' def__init__(self,g): self.grade = g
defspeak_grade(self): # 定义新函数 print('i am in %d grade' % self.grade)
classpeople(): name = ''#规范 height = 0 weight = 0 def__init__(self,n,h,w): self.name = n self.height = h self.weight = w defspeak(self): print('my name is %s, my height is %d cm, my weight is %.1fkg' % (self.name,self.height,self.weight))
classstudent(people): grade = ''
def__init__(self,n,h,w,g): # super(student,self).__init__(n,h,w) people.__init__(self,n,h,w) # 调用父类的init函数 这里必须传入people类的所有init参数 self.grade = g defspeak_grade(self): # 定义新函数 print('i am in %d grade' % self.grade)
a = student('wanyu',175,70,9) a.speak() a.speak_grade()
my name is wanyu, my height is 175 cm, my weight is 70.0kg i am in 9 grade
classpeople(): name = ''#规范 height = 0 weight = 0 def__init__(self,n,h,w): self.name = n self.height = h self.weight = w defspeak(self): print('my name is %s, my height is %d cm, my weight is %.1fkg' % (self.name,self.height,self.weight))
classstudent(people): grade = ''
def__init__(self,n,h,g): # super(student,self).__init__(n,h,w) people.__init__(self,n,h) # 这里只传入people类的所部分init参数,少传入参数w,报错 self.grade = g defspeak_grade(self): # 定义新函数 print('i am in %d grade' % self.grade)
classpeople(): name = ''#规范 height = 0 weight = 0 def__init__(self,n,h,w): self.name = n self.height = h self.weight = w defspeak(self): print('my name is %s, my height is %d cm, my weight is %.1fkg' % (self.name,self.height,self.weight))
classstudent(people): grade = '' def__init__(self,n,h,w,g): people.__init__(self,n,h,w) # 调用父类的init函数 self.grade = g defspeak(self): # 方法重写 print('my name is %s, my height is %d cm, my weight is %.1fkg. And i am in %d grade' % (self.name,self.height,self.weight,self.grade))
a = student('wanyu',175,70,9) a.speak()
my name is wanyu, my height is 175 cm, my weight is 70.0kg. And i am in 9 grade