av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

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

瀏覽:91日期:2022-07-07 14:51:37

英文文檔:

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.

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

說(shuō)明:

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

#定義類型A>>> class A: name = ’defined in A’#創(chuàng)建類型A實(shí)例a>>> a = A()#a.__class__屬性>>> a.__class__<class ’__main__.A’>#type(a)返回a的類型>>> type(a)<class ’__main__.A’>#測(cè)試類型>>> type(a) == ATrue

 2. 雖然可以通過(guò)type函數(shù)來(lái)檢測(cè)一個(gè)對(duì)象是否是某個(gè)類型的實(shí)例,但是更推薦使用isinstance函數(shù),因?yàn)閕sinstance函數(shù)考慮了父類子類間繼承關(guān)系。

#定義類型B,繼承A>>> class B(A): age = 2#創(chuàng)建類型B的實(shí)例b>>> b = B()#使用type函數(shù)測(cè)試b是否是類型A,返回False>>> type(b) == AFalse#使用isinstance函數(shù)測(cè)試b是否類型A,返回True>>> isinstance(b,A)True

 3. 函數(shù)另一種使用方式是傳入3個(gè)參數(shù),函數(shù)將使用3個(gè)參數(shù)來(lái)創(chuàng)建一個(gè)新的類型。其中第一個(gè)參數(shù)name將用作新的類型的類名稱,即類型的__name__屬性;第二個(gè)參數(shù)是一個(gè)元組類型,其元素的類型均為類類型,將用作新創(chuàng)建類型的基類,即類型的__bases__屬性;第三個(gè)參數(shù)dict是一個(gè)字典,包含了新創(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的實(shí)例>>> c = C()>>> d = D()#分別輸出實(shí)例c、實(shí)例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’)

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 国产精品久久777777 | 日韩一区二区黄色片 | 在线观看中文字幕 | 久久免费视频1 | 高清视频一区二区三区 | 中文字幕亚洲一区 | 仙人掌旅馆在线观看 | 成人水多啪啪片 | 一区中文字幕 | 精品一区久久 | www视频在线观看 | 成人性视频免费网站 | 久久成人精品 | 日本免费一区二区三区四区 | 日韩视频成人 | 91在线免费视频 | 午夜一区二区三区在线观看 | 久久一二区| 成人免费看黄网站在线观看 | 性做久久久久久免费观看欧美 | 成人免费看片 | 一a一片一级一片啪啪 | 99视频在线免费观看 | 精品国产成人 | 中文字幕在线不卡播放 | 久久久久亚洲精品 | 91精品国产综合久久久久久漫画 | 日韩在线一区二区三区 | 成人精品一区二区三区中文字幕 | 亚洲美女一区 | 亚洲自拍偷拍视频 | 黑人中文字幕一区二区三区 | 欧美视频二区 | 成人伊人| 午夜欧美日韩 | 久久99精品视频 | 亚洲网站在线播放 | 欧美精品一区二区三区在线四季 | 99精品一级欧美片免费播放 | 毛片片| 毛片大全 |