Python中的__new__与__init__魔术方法理解笔记


Posted in Python onNovember 08, 2014

很喜欢Python这门语言。在看过语法后学习了Django 这个 Web 开发框架。算是对 Python 有些熟悉了。不过对里面很多东西还是不知道,因为用的少。今天学习了两个魔术方法:__new__ 和 __init__。

开攻:

如果对 Python 有所简单了解的话应该知道它包含类这个概念的。语法如下:

class ClassName:

    <statement - 1>:

        .

        .   

        .

    <statement - N>

问题来了。像我们学习的 C# 或是 Java 这些语言中,声明类时,都是有构造函数的。类似下面这样子:

public class ClassName{

    public ClassName(){
    }

}

当然访问修饰符不一定非得 public ,这不是重点就不??铝恕D Python 中的构造函数是怎样的呢?我自己的理解是它是没有构造函数的。只不过在初始化时会调用一些内部的可被改变的方法。比如:__new__ 和 __init__ 。从字面意思理解 __new__ 应该会在 __init__ 之前执行,实际查了资料后确实是如此的。官方文档中关于 __init__ 方法有这样一句话:

Many classes like to create objects with instances customized to a specific initial state. Therefore a class may define a special method named __init__()

意思就是说在创建类时,如果想指定的它的初始状态,那么可以通过定义一个指定名称为 __init__ 的方法去实现这样的功能。这样说来 __new__ 并不是官方推荐的初始化类时要使用的方法。但是 __new__ 却是在 __init__ 之前执行的。官方文档中对 __init__ 介绍的第一句便是:当创建实例时调用 __init__ 方法(Called when the instance is created.),后面又介绍说,如果想调用基类的 __init__方法必须显式的调用,只继承基类在初始化子类时并不会自动调用基类的 __init__ 方法。到此应该算是对 __init__ 方法了解了。

下面我们看一下 __new__ 方法是怎么回事儿。先看一下官方文档:

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.

从这里可以看出来,这个方法才是产生类的实例的地方。当实例创建完成就调用 __init__ 方法,初始化类的内部状态值。文档中还提到 __new__ 方法其实是一个静态方法,不用每次定义类的时候都声明这个方法,因为在版本 2.4 之后 object 是所有对象的基类,而 __new__ 是定义在 object 对象内部的静态方法。

到这儿其实就差不多了,就按字面意思理解就可以。 __new__ 用于创建对象,而 __init__ 是在创建完成之后初始化对象状态。前两天看到一个有趣的方法,通过使用 __new__ 应用了单例模式在对象身上。

注意点:在类继承中,当子类和父类都定义了自己的 __new__ 方法时,那么会先调用子类的 __new__ 方法再调用父类的。这一点倒是和 C# 中的继承是一样的。其实仔细想想 Python 中只不过是把初始化和创建对象这两个概念分开了,而 C# 中即没有这么干,只给了构造函数,开发者可以自己看着办。从这一点儿上说我觉得 Python 的做法我更喜欢。

结束:

今天算是又学习到了新知识,自己挺开心的。再实践实践。。。

Python 相关文章推荐
深入理解Python 代码优化详解
Oct 27 Python
Python中实现对Timestamp和Datetime及UTC时间之间的转换
Apr 08 Python
python开发之thread实现布朗运动的方法
Nov 11 Python
Python安装第三方库及常见问题处理方法汇总
Sep 13 Python
python spyder中读取txt为图片的方法
Apr 27 Python
解决seaborn在pycharm中绘图不出图的问题
May 24 Python
Python实现网站表单提交和模板
Jan 15 Python
详解Python中的正斜杠与反斜杠
Aug 09 Python
python函数的作用域及关键字详解
Aug 20 Python
Python实现播放和录制声音的功能
Aug 12 Python
如何基于Python pygame实现动画跑马灯
Nov 18 Python
进行数据处理的6个 Python 代码块分享
Apr 06 Python
Python使用百度API上传文件到百度网盘代码分享
Nov 08 #Python
python中readline判断文件读取结束的方法
Nov 08 #Python
Python实现基于HTTP文件传输实例
Nov 08 #Python
Python使用urllib模块的urlopen超时问题解决方法
Nov 08 #Python
Python set集合类型操作总结
Nov 07 #Python
数据挖掘之Apriori算法详解和Python实现代码分享
Nov 07 #Python
Python的subprocess模块总结
Nov 07 #Python
You might like
PHP实现将多个文件中的内容合并为新文件的方法示例
2017/06/10 PHP
PHP实现微信图片上传到服务器的方法示例
2017/06/29 PHP
Laravel 微信小程序后端搭建步骤详解
2019/11/26 PHP
再次更新!MSClass (Class Of Marquee Scroll通用不间断滚动JS封装类 Ver 1.6)
2007/02/05 Javascript
JavaScript创建闭包的两种方式的优劣与区别分析
2015/06/22 Javascript
javascript高级编程之函数表达式 递归和闭包函数
2015/11/29 Javascript
点评js异步加载的4种方式
2015/12/22 Javascript
浅谈bootstrap源码分析之scrollspy(滚动侦听)
2016/06/06 Javascript
js addDqmForPP给标签内属性值加上双引号的函数
2016/12/24 Javascript
js学习总结_基于数据类型检测的四种方式(必看)
2017/07/04 Javascript
基于Two.js实现星球环绕动画效果的示例
2017/11/06 Javascript
nodejs实现的简单web服务器功能示例
2018/03/15 NodeJs
JavaScript实用代码小技巧
2018/08/23 Javascript
Vue入门学习笔记【基本概念、对象、过滤器、指令等】
2019/04/13 Javascript
微信小程序 scroll-view 水平滚动实现过程解析
2019/10/12 Javascript
JS如何在数组指定位置插入元素
2020/03/10 Javascript
Bootstrap实现前端登录页面带验证码功能完整示例
2020/03/26 Javascript
vue keep-alive的简单总结
2021/01/25 Vue.js
[00:35]DOTA2上海特级锦标赛 Newbee战队宣传片
2016/03/03 DOTA
python处理csv数据的方法
2015/03/11 Python
解决PyCharm中光标变粗的问题
2017/08/05 Python
flask-restful使用总结
2018/12/04 Python
python3实现点餐系统
2019/01/24 Python
在flask中使用python-dotenv+flask-cli自定义命令(推荐)
2020/01/05 Python
基于python实现可视化生成二维码工具
2020/07/08 Python
如何在windows下安装配置python工具Ulipad
2020/10/27 Python
华为C++笔试题
2014/08/05 面试题
SQL语言面试题
2013/08/27 面试题
什么情况下你必须要把一个类定义为abstract的
2013/01/06 面试题
优秀实习自我鉴定
2013/12/04 职场文书
音乐器材管理制度
2014/01/31 职场文书
个人三严三实对照检查材料
2014/09/25 职场文书
公司法定代表人授权委托书
2014/09/29 职场文书
初中军训感言
2015/08/01 职场文书
你喜欢篮球吗?Python实现篮球游戏
2021/06/11 Python
小程序自定义轮播图圆点组件
2022/06/25 Javascript