`

Python __new__ 、__init__、 __call__

阅读更多
Contains:
  • __new__: 创建对象时调用,返回当前对象的一个实例
  • __init__:创建完成对象后调用,对当前对象的实例的一些初始化,无返回值
  • __call__:

一、__init__通过此方法我们可以顶一个对象的初始操作。
但是当我新建一个类的实例的时候,__init__并不是第一个被调用的,实际上,还有一个叫做__new__的方法,来构造这个实例。然后在给开始创建的初始化函数传递参数。


二、__new__   
   
    @staticmethod # known case of __new__
    def __new__(cls, *more): # known special case of object.__new__

        """ T.__new__(S, ...) -> a new object with type S, a subtype of T """

        pass

__new__方法相当不常用,但是它有自己的特性,特别是当继承一个不可变的类型比如一个tuple或者string.
Q:可是什么时候使用__new__?
难道是这个吗?特别是当继承一个不可变的类型比如一个tuple或者string.
引用

object.__new__(cls[, …])
Called to create a new instance of class cls. __new__() is a static method (special-cased so you need not declare it as such) that takes the class of which an instance was requested as its first argument. The remaining arguments are those passed to the object constructor expression (the call to the class). The return value of __new__() should be the new object instance (usually an instance of cls).
Typical implementations create a new instance of the class by invoking the superclass’s __new__() method using super(currentclass, cls).__new__(cls[, ...])with appropriate arguments and then modifying the newly-created instance as necessary before returning it
If __new__() returns an instance of cls, then the new instance’s __init__() method will be invoked like __init__(self[, ...]), where self is the new instance and the remaining arguments are the same as were passed to __new__().
If __new__() does not return an instance of cls, then the new instance’s __init__() method will not be invoked.
__new__() is intended mainly to allow subclasses of immutable types (like int, str, or tuple) to customize instance creation. It is also commonly overridden in custom metaclasses in order to customize class creation.

三、__call__

引用
Called when the instance is “called” as a function; if this method is defined, x(arg1, arg2, ...) is a shorthand for x.__call__(arg1, arg2, ...).


这个方法可以让类的实例的行为表现的像函数一样,你可以调用他们,讲一个函数当做一个参数传到另外一个函数中等等。
class Entity:

    def __init__(self,x,y):
        self.x = x
        self.y = y
    def __call__(self, x, y):
        self.x = x
        self.y = y

entity = Entity(2,3)
print 'before __call__',(entity.x,entity.y)
entity.__call__(4,5)
print 'after __call__',(entity.x,entity.y)

result:
before __call__ (2, 3)
after __call__ (4, 5)

参考资料:
http://docs.python.org/2/reference/datamodel.html
http://stackoverflow.com/questions/8106900/new-and-init-in-python
http://stackoverflow.com/questions/674304/pythons-use-of-new-and-init
http://www.wingide.com/psupport/python-manual/2.4/ref/customization.html
http://stackoverflow.com/questions/12971641/need-to-understand-the-flow-of-init-new-and-call?lq=1
http://pycoders-weekly-chinese.readthedocs.org/en/latest/issue6/a-guide-to-pythons-magic-methods.html
分享到:
评论

相关推荐

    浅谈python中的__init__、__new__和__call__方法

    在Python的面向对象编程中,`__init__`、`__new__`和`__call__`是三个非常重要的特殊方法,它们各自扮演着特定的角色。这篇文章将详细讲解这三个方法的功能、用途以及如何正确使用。 首先,`__init__`方法是对象的...

    详解Python中的__new__、__init__、__call__三个特殊方法

    __call__ : 对象可call,注意不是类,是对象。 先有创建,才有初始化。即先__new__,而后__init__。 上面说的不好理解,看例子。 1.对于__new__ class Bar(object): pass class Foo(object): def __new__(cls, ...

    python中的__init__ 、__new__、__call__小结

    注意,这里的第一个参数是self即对象本身【注意和new的区别】3.__call__(self, *args, **kwargs) 如果类实现了这个方法,相当于把这个类型的对象当作函数来使用,相当于 重载了括号运算符  看具体的例子:复制代码...

    详细解析Python中__init__()方法的高级应用

    工厂函数是一种创建对象的函数,而不是直接使用`new`或`__call__`。在Python中,工厂函数可以简化复杂对象的创建,尤其是在处理继承层次结构时。 例如,我们可以创建一个扑克牌游戏,包含AceCard、NumberCard和...

    面向对象编程基础_python面向对象_python教程_

    在这个例子中,`call_method`函数接受一个对象作为参数,并调用它的`method`方法。尽管`obj1`和`obj2`来自不同的类,但它们都可以响应`method`调用,这就是多态性。 四、访问控制 1. **访问修饰符**:Python没有...

    python 常用方法

    - **`__call__` 方法**:允许将实例当作函数来调用,即实现类似函数的功能。 ```python class CallableClass: def __call__(self, *args, **kwargs): print("Called with arguments:", args, "and keyword ...

    python魔术方法指南

    - **`__call__`**:使对象可以像函数一样被调用。 #### 使用示例 假设我们需要定义一个简单的文件操作类`FileObject`,该类可以自动打开和关闭文件: ```python from os.path import join class FileObject: '...

    在Python中实现单例模式.docx

    在这个例子中,我们定义了一个名为 `Singleton` 的元类,并重写了 `__call__` 方法。当使用这个元类定义的类被实例化时,`__call__` 方法会被调用,从而返回单例实例。 #### 使用 `__new__` 方法 另一种实现单例...

    python单例模式.zip_图形图像处理_Python_

    cls._instances[cls] = super().__call__(*args, **kwargs) return cls._instances[cls] class MySingletonGUI(metaclass=SingletonMeta): def __init__(self): pass ``` 在“python单例模式.txt”文件中,...

    python特殊函数

    - **格式**:`def __call__(self, *args, **kwargs):` - **示例**: ```python class MyClass: def __call__(self, x, y): return x + y ``` #### 7. `__nonzero__` (Python 2) / `__bool__` (Python 3) - **...

    python面向对象练习题.pdf

    conn.call_proc(sql) return xxx exc1('127.0.0.1', 3306, 'db1', 'utf8', 'select * from tb1;') exc2('127.0.0.1', 3306, 'db1', 'utf8', '存储过程的名字') ``` **优化后的代码:** ```python class DB: def...

    Python-面向对象.xmind(思维导图)

    内容:面向对象 面向过程就是分析出解决问题所需要的步骤,然后用函数把这些步骤一步一步实现,使用的时候一个一个依次调用就可以了。...魔法函数: 3.1init()构造函数、__str__()、__call__()、__new__()

    Python–单例模式及new方法

    如果需要避免多次初始化,可以在`__new__`或元类的`__call__`方法中添加条件逻辑,比如使用一个标志来记录是否已经初始化过。但这通常不是必需的,因为通常初始化不会带来副作用,且单例模式主要关注的是对象的唯一...

    Single_method.zip

    cls._instances[cls] = super(SingletonMeta, cls).__call__(*args, **kwargs) return cls._instances[cls] class Singleton(metaclass=SingletonMeta): def __init__(self): pass ``` 每种实现单例模式的方法...

    Python Interview

    print(dir(my_function)) # 输出:['__call__', '__class__', ...] print(hasattr(my_function, '__call__')) # 输出:True print(getattr(my_function, '__name__')) # 输出:my_function ``` #### 6. 字典推导式 ...

    Python经典面试题 Python常见面试考试题目整理总结 Python面试题手册 共15页.pdf

    通过创建一个元类Singleton,重写`__init__`和`__call__`方法来控制实例化过程,确保类的实例只有一个。例如: ```python class Singleton(type): _instances = {} def __call__(cls, *args, **kwargs): if ...

Global site tag (gtag.js) - Google Analytics