python 单继承的实现
生活随笔
收集整理的這篇文章主要介紹了
python 单继承的实现
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
第一類單繼承的實現:
from person import Person from student import Student from worker import Workerper = Person("aa", 1, 2) stu = Student("tom", 18, 12345, 110) print(stu.name, stu.age) stu.run() print(stu.stuId) #print(stu.__money)私有屬性 print(stu.getMoney()) #通過繼承過來的共有方法訪問私有屬性 #stu.stuFunc()wor = Worker("lilei", 20, 111) print(wor.name, wor.age) wor.eat("apple")print(per.getMoney()第二類person:
''' 學習中遇到問題沒人解答?小編創(chuàng)建了一個Python學習交流QQ群:725638078 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' class Person(object):def __init__(self, name, age, money):self.name = nameself.age = ageself.__money = moneydef setMoney(self, money):self.__money = moneydef getMoney(self):return self.__moneydef run(self):print("run")def eat(self, food):print("eat " + food)第三類student:
from person import Personclass Student(Person):def __init__(self, name, age, money, stuId):#調用父類中的__init__super(Student, self).__init__(name, age, money)#子類可以有一些自己獨有的屬性self.stuId = stuIddef stuFunc(self):print(self.__money)第四類worker:
from person import Personclass Worker(Person):def __init__(self, name, age, money):#調用父類中的__init__super(Worker, self).__init__(name, age, money)結尾給大家推薦一個非常好的學習教程,希望對你學習Python有幫助!
Python基礎入門教程推薦:更多Python視頻教程-關注B站:Python學習者
https://www.bilibili.com/video/BV1LL4y1h7ny?share_source=copy_web
Python爬蟲案例教程推薦:更多Python視頻教程-關注B站:Python學習者
https://www.bilibili.com/video/BV1QZ4y1N7YA?share_source=copy_web
總結
以上是生活随笔為你收集整理的python 单继承的实现的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python 多继承的实现
- 下一篇: Python里的dict和set的背后小