笨鸟编程-零基础入门Pyhton教程

 找回密码
 立即注册
查看: 4507|回复: 0

Python 中__new__方法详解及使用

[复制链接]
发表于 2022-3-13 13:43:55 | 显示全部楼层 |阅读模式
__new__ 的作用

在Python中__new__方法与__init__方法类似,但是如果两个都存在那么__new__闲执行。

在基础类object中,__new__被定义成了一个静态方法,并且需要传递一个参数cls。Cls表示需要实例化的类,此参数在实例化时由Python解析器自动提供。

new()是在新式类中新出现的方法,它作用在构造方法init()建造实例之前,可以这么理解,在Python 中存在于类里面的构造方法init()负责将类的实例化,而在init()调用之前,new()决定是否要使用该init()方法,因为new()可以调用其他类的构造方法或者直接返回别的对象来作为本类 的实例。

new()方法的特性:

new()方法是在类准备将自身实例化时调用。

new()方法始终都是类的静态方法,即使没有被加上静态方法装饰器。

实例
  1. class Person(object):
  2.   
  3.     def __init__(self, name, age):
  4.         self.name = name
  5.         self.age = age
  6.      
  7.     def __new__(cls, name, age):
  8.         if 0 < age < 150:
  9.             return object.__new__(cls)
  10.             # return super(Person, cls).__new__(cls)
  11.         else:
  12.             return None
  13.   
  14.     def __str__(self):
  15.         return '{0}({1})'.format(self.__class__.__name__, self.__dict__)
  16.   
  17. print(Person('Tom', 10))
  18. print(Person('Mike', 200))
复制代码
结果:
  1. Person({'age': 10, 'name': 'Tom'})
  2. None
复制代码
Python3和 Python2中__new__使用不同Python2的写法

注意 Python 版本大于等于2.7才支持

  1. class Singleton(object):
  2.     def __new__(cls,*args, **kwargs):
  3.         if not hasattr(cls,'_inst'):
  4.             print(cls)
  5.             cls._inst = super(Singleton, cls).__new__(cls,*args,**kwargs)
  6.         return cls._inst
复制代码
Python3的写法
  1. class Singleton(object):
  2.     def __new__(cls,*args, **kwargs):
  3.         if not hasattr(cls,'_inst'):
  4.             print(cls)
  5.             cls._inst = super(Singleton, cls).__new__(cls)
  6.         return cls._inst
复制代码
如果Python3的写法跟Python2写法一样,那么倒数第二行会报错"TypeError: object() takes no parameters"

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|笨鸟自学网 ( 粤ICP备20019910号 )

GMT+8, 2024-11-21 23:05 , Processed in 0.023258 second(s), 18 queries .

© 2001-2020

快速回复 返回顶部 返回列表