Python-new方法

Posted wf8998

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-new方法相关的知识,希望对你有一定的参考价值。

__new__方法:用于定义创建对象时执行的操作.
object类中的__new__()方法完成对象创建过程中的内存空间申请,对象属性初始化等一系列的操作.
注意:__new__()方法仅仅是python开放出来给用户干预创建对象时的一个操作入口,该方法并不是直接完成分配内存,创建对象的操作,创建对象的操作由python底层统一管理.
例:
class User:
  def __new__(cls, *args, **kwargs):
    print("user new method is running...")
    #创建对象由object完成
    instance = object.__new__(User)
    return instance

 

def __init__(self,name,age):
  print("user init method is running...")
  self.name = name
  self.age = age

user1 = User("王二小",18)

以上是关于Python-new方法的主要内容,如果未能解决你的问题,请参考以下文章

python 类方法和静态方法的区别

python方法的参数个数问题

如何python3中调用python2中的方法

python字符串常用方法

有哪些python引包的方法?

python中魔法方法加减怎么用