91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中繼承父類方法

發布時間:2020-07-20 10:12:03 來源:億速云 閱讀:240 作者:清晨 欄目:編程語言

這篇文章主要介紹python中繼承父類方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

繼承父類方法

子類可以直接調用父類的方法

class Person():
	def __init__(self):
		pass			
	def hello(self):
		print 'hello'		
class Student(Person):
	def __init__(self):
		pass				
s = Student()
s.hello()				# hello

繼承父類屬性

這里要注意, 如果要繼承父類的屬性, 一定要在子類的構造函數里調用父類的構造函數, 否則會報錯無法訪問, 因為父類的構造函數沒有被調用, 構造函數中的屬性自然也就沒有被聲明

這時如果調用父類的屬性則會報錯, 報錯內容為Student實例沒有name屬性

# coding=utf-8

class Person():
	def __init__(self):
		self.name = '小明'
		self.age = 18	
		print('Person class init completed')		
	def hello(self):
		print 'hello'
class Student(Person):
	def __init__(self):
		print ('Student class init completed')		
s = Student()
print s.name

# Student class init completed
# Traceback (most recent call last):
#   File ".\classDemo.py", line 23, in <module>
#     print s.name
# AttributeError: Student instance has no attribute 'name'

下面是子類在構造函數中調用父類構造函數的情況, 子類實例可以訪問父類屬性

# coding=utf-8

class Person():
	def __init__(self):
		self.name = u'小明'
		self.age = 18		
		print('Person class init completed')			
	def hello(self):
		print 'hello'		
class Student(Person):
	def __init__(self):
		Person.__init__(self)		
		print ('Student class init completed')				
s = Student()
print s.name

# Person class init completed
# Student class init completed
# 小明

方法重寫

有時候父類提供的方法不能滿足需求時, 可以在子類中重寫父類的方法

在父類Person中, 構造函數只定義了name和age兩個屬性, print_into()函數也只打印了name, age這兩個屬性

在子類Student中, 多了一個school屬性, 顯然父類的提供方法功能不夠了, 這時候, 子類就需要對父類的方法進行重寫, 擴充父類的功能

# coding=utf-8

class Person(object):
	def __init__(self, name, age):
		self.name = name
		self.age = age			
	def print_info(self):
		print 'name: ', self.name
		print 'age: ', self.age		
class Student(Person):
	def __init__(self, name, age, school):
		Person.__init__(self, name, age)		
		self.school = school		
	def print_info(self):
		super(Student, self).print_info()
        # python3 中可直接使用super()
        # Python2 一般為super(class, self), 且class要為新類
        # 新類就是由內置類型派生出來的類
		print 'school: ', self.school				
s = Student(u'小明', 18, u'家里蹲大學')
s.print_info()
	
# name:  小明
# age:  18
# school:  家里蹲大學

以上是python中繼承父類方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吉林市| 弋阳县| 原阳县| 景东| 策勒县| 平遥县| 叶城县| 无极县| 治多县| 咸丰县| 交城县| 阳东县| 榆树市| 遂平县| 永泰县| 贞丰县| 绍兴市| 平昌县| 阳曲县| 罗山县| 麟游县| 新竹县| 梨树县| 新绛县| 双城市| 根河市| 商城县| 平原县| 肇庆市| 沧源| 保山市| 阿图什市| 穆棱市| 凤阳县| 翁源县| 滁州市| 克什克腾旗| 台南市| 柞水县| 新郑市| 怀安县|