说明
1、重写__new___方法必须是returnn super().__new__(cls)。
2、如果Python的解释器没有引用分配空间的对象,则不会调用对象的初始化方法。
注意:__new__ 调用时需要静态方法 主动传递 cls 参数
实例
classMusicPlayer(object): def__new__(cls,*args,**kwargs): #若不返回任何结果, returnsuper().__new__(cls) def__init__(self): print("音乐播放对象的初始化") player=MusicPlayer() print(player)
以上是python___new__重写,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。