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中的lambda表达式的用法
Aug 28 Python
python取代netcat过程分析
Feb 10 Python
flask入门之表单的实现
Jul 18 Python
[原创]Python入门教程3. 列表基本操作【定义、运算、常用函数】
Oct 30 Python
使用PM2+nginx部署python项目的方法示例
Nov 07 Python
selenium使用chrome浏览器测试(附chromedriver与chrome的对应关系表)
Nov 29 Python
scikit-learn线性回归,多元回归,多项式回归的实现
Aug 29 Python
python滑块验证码的破解实现
Nov 10 Python
Python requests设置代理的方法步骤
Feb 23 Python
pycharm不以pytest方式运行,想要切换回普通模式运行的操作
Sep 01 Python
python产生模拟数据faker库的使用详解
Nov 04 Python
Python实现石头剪刀布游戏
Jan 20 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
法国:浪漫之都的咖啡文化
2021/03/03 咖啡文化
使用eAccelerator加密PHP程序
2008/10/03 PHP
php代码架构的八点注意事项
2016/01/25 PHP
JavaScript 组件之旅(三):用 Ant 构建组件
2009/10/28 Javascript
ExtJs grid行 右键菜单的两种方法
2010/06/19 Javascript
利用jQuery插件扩展识别浏览器内核与外壳的类型和版本的实现代码
2011/10/22 Javascript
分享一个asp.net pager分页控件
2012/01/04 Javascript
JS的replace方法介绍
2012/10/20 Javascript
js 连接数据库如何操作数据库中的数据
2012/11/23 Javascript
原生javascript实现无间缝滚动示例
2014/01/28 Javascript
jQuery CSS()方法改变现有的CSS样式
2014/08/20 Javascript
JS数字抽奖游戏实现方法
2015/05/04 Javascript
JavaScript中误用/g导致的正则test()无法正确重复执行的解决方案
2016/07/27 Javascript
bootstrap选项卡扩展功能详解
2017/06/14 Javascript
微信小程序实现轮播图效果
2017/09/07 Javascript
python中lambda与def用法对比实例分析
2015/04/30 Python
Python的Django框架中的URL配置与松耦合
2015/07/15 Python
python 3.6 tkinter+urllib+json实现火车车次信息查询功能
2017/12/20 Python
python 处理telnet返回的More,以及get想要的那个参数方法
2019/02/14 Python
python脚本实现音频m4a格式转成MP3格式的实例代码
2019/10/09 Python
Python使用tkinter实现摇骰子小游戏功能的代码
2020/07/02 Python
Python截图并保存的具体实例
2021/01/14 Python
HTML 5 标签、属性、事件及浏览器兼容性速查表 附打包下载
2012/10/20 HTML / CSS
世界上最悠久的自行车制造商:Ribble Cycles
2017/03/18 全球购物
奥地利网上现代灯具和灯饰店:Lampenwelt.at
2018/01/29 全球购物
澳大利亚一站式数码相机商店:CameraPro
2020/03/09 全球购物
医学生职业规划范文
2014/01/05 职场文书
优秀员工评语
2014/02/10 职场文书
聘用意向书
2014/07/29 职场文书
儿园租房协议书范本
2014/12/02 职场文书
义诊活动通知
2015/04/24 职场文书
师德师风培训感言
2015/08/03 职场文书
2016七夕情人节广告语
2016/01/28 职场文书
2019通用版新员工入职培训方案!
2019/07/11 职场文书
深入浅析Redis 集群伸缩原理
2021/05/15 Redis
Spring Boot 整合 Apache Dubbo的示例代码
2021/07/04 Java/Android