溫馨提示×

溫馨提示×

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

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

python創(chuàng)建子類的方法分析

發(fā)布時間:2020-09-26 18:43:30 來源:腳本之家 閱讀:104 作者:zhaoyangjian724 欄目:開發(fā)技術(shù)

本文實例講述了python創(chuàng)建子類的方法。分享給大家供大家參考,具體如下:

如果你的類沒有從任何祖先類派生,可以使用object作為父類的名字。經(jīng)典類的聲明唯一不同之處在于其沒有從祖先類派生---此時,沒有圓括號:

# !/usr/bin/env python
# -*- coding: utf-8 -*-
class ClassicClassWithoutSuperclasses:
  def fun1(self):
    print 'aaaaaaa'
a=ClassicClassWithoutSuperclasses()
print a
print type(a)
print a.fun1()


C:\Python27\python.exe C:/Users/TLCB/PycharmProjects/untitled/eeeee/a5.py
<__main__.ClassicClassWithoutSuperclasses instance at 0x0047BDF0>
<type 'instance'>
aaaaaaa
None

至此,我們已經(jīng)看到了一些類和子類的例子,下面還有一個簡單的例子:

class Parent(object): # define parent class 定義父類
 def parentMethod(self):
  print 'calling parent method


# !/usr/bin/env python
# -*- coding: utf-8 -*-
class Parent(object): # define parent class 定義父類
 def parentMethod(self):
  print 'calling parent method'
class Child(Parent): # define child class 定義子類
 def childMethod(self):
  print 'calling child method'
a=Parent() # instance of parent 父類的實例
print a.parentMethod()

C:\Python27\python.exe C:/Users/TLCB/PycharmProjects/untitled/eeeee/a5.py
calling parent method
None

>>> c = Child() # instance of child 子類的實例
>>> c.childMethod() # child calls its method 子類調(diào)用它的方法
calling child method
>>> c.parentMethod() # calls parent's method 調(diào)用父類的方法
calling parent method

更多關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python面向?qū)ο蟪绦蛟O(shè)計入門與進階教程》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python編碼操作技巧總結(jié)》及《Python入門與進階經(jīng)典教程》

希望本文所述對大家Python程序設(shè)計有所幫助。

向AI問一下細節(jié)

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

AI