溫馨提示×

溫馨提示×

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

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

Python使用內(nèi)置函數(shù)type創(chuàng)建新類型

發(fā)布時間:2020-10-26 16:15:51 來源:億速云 閱讀:156 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細講解有關(guān)Python使用內(nèi)置函數(shù)type創(chuàng)建新類型,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

英文文檔:

class type(object)

class type(name, bases, dict)

With one argument, return the type of an object. The return value is a type object and generally the same object as returned by object.__class__.

The isinstance() built-in function is recommended for testing the type of an object, because it takes subclasses into account.

With three arguments, return a new type object. This is essentially a dynamic form of the class statement. The namestring is the class name and becomes the __name__ attribute; the bases tuple itemizes the base classes and becomes the __bases__ attribute; and the dict dictionary is the namespace containing definitions for class body and is copied to a standard dictionary to become the __dict__ attribute.

  返回對象的類型,或者根據(jù)傳入的參數(shù)創(chuàng)建一個新的類型

說明:

  1. 函數(shù)只傳入一個參數(shù)時,返回參數(shù)對象的類型。 返回值是一個類型對象,通常與對象.__ class__返回的對象相同。

#定義類型A
>>> class A:
  name = 'defined in A'

#創(chuàng)建類型A實例a
>>> a = A()

#a.__class__屬性
>>> a.__class__
<class '__main__.A'>

#type(a)返回a的類型
>>> type(a)
<class '__main__.A'>

#測試類型
>>> type(a) == A
True

 2. 雖然可以通過type函數(shù)來檢測一個對象是否是某個類型的實例,但是更推薦使用isinstance函數(shù),因為isinstance函數(shù)考慮了父類子類間繼承關(guān)系。

#定義類型B,繼承A
>>> class B(A):
  age = 2

#創(chuàng)建類型B的實例b
>>> b = B()

#使用type函數(shù)測試b是否是類型A,返回False
>>> type(b) == A
False

#使用isinstance函數(shù)測試b是否類型A,返回True
>>> isinstance(b,A)
True

 3. 函數(shù)另一種使用方式是傳入3個參數(shù),函數(shù)將使用3個參數(shù)來創(chuàng)建一個新的類型。其中第一個參數(shù)name將用作新的類型的類名稱,即類型的__name__屬性;第二個參數(shù)是一個元組類型,其元素的類型均為類類型,將用作新創(chuàng)建類型的基類,即類型的__bases__屬性;第三個參數(shù)dict是一個字典,包含了新創(chuàng)建類的主體定義,即其值將復(fù)制到類型的__dict__屬性中。

#定義類型A,含有屬性InfoA
>>> class A(object):
  InfoA = 'some thing defined in A'

#定義類型B,含有屬性InfoB
>>> class B(object):
  InfoB = 'some thing defined in B'

#定義類型C,含有屬性InfoC
>>> class C(A,B):
  InfoC = 'some thing defined in C'

#使用type函數(shù)創(chuàng)建類型D,含有屬性InfoD
>>> D = type('D',(A,B),dict(InfoD='some thing defined in D'))

#C、D的類型
>>> C
<class '__main__.C'>
>>> D
<class '__main__.D'>

#分別創(chuàng)建類型C、類型D的實例
>>> c = C()
>>> d = D()

#分別輸出實例c、實例b的屬性
>>> (c.InfoA,c.InfoB,c.InfoC)
('some thing defined in A', 'some thing defined in B', 'some thing defined in C')
>>> (d.InfoA,d.InfoB,d.InfoD)
('some thing defined in A', 'some thing defined in B', 'some thing defined in D')

關(guān)于Python使用內(nèi)置函數(shù)type創(chuàng)建新類型就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向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