1、说明
python3.x的所有类都会自动转换为一个新式类,不论是否有继承object对象。
python2.x必须显式地指定类继承object父类才表示新式类。
2、实例
#newstyle.py,python环境为2.xclassClassic: """ python2.x默认类为经典类 由于__getatt__与__getattribute__功能效果一样,这里只用__getattr__演示 """ def__getattr__(self,method_name): print("callClassic__getattr__,itwouldcallbuilt-in[%s]method"%method_name)returngetattr(self.__name,method_name)classNewStyleClass(object):def__init__(self): self.__name="newstylename" """ python2.x需要指明为新式类,python3.x默认为新式类 """ def__getattr__(self,item): print("callNewStyle__getattr__,itwouldcallbuilt-in[%s]method"%item)returngetattr(self.__name,item)deftest_dir(): C=Classic() N=NewStyleClass() print(dir(C)#经典类内置有__getattr__方法 print(dir(N)#新式类的内置方法继承object对象>>>pythonnewstyle.py
以上就是python新式类的介绍,希望对大家有所帮助。更多Python学习指路:Python基础教程
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)