博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 一些易错点整理
阅读量:5797 次
发布时间:2019-06-18

本文共 1869 字,大约阅读时间需要 6 分钟。

这篇文章是抄抄写写得来的,纯粹是这个编辑器比笔记的好太多,才在这儿写。

函数参数传递

对于变量(与对象相对的概念),其实,python函数参数传递可以理解为就是变量传值操作,用C++的方式理解,就是对void*赋值。如果这个变量的值不变,我们看似就是引用,如果这个变量的值改变,我们看着像是在赋值。

自己的理解:传递的值都会复制一份,如果是可变值,函数体内变量值变动时,指针指向的值会改,则看起来像是引用;如果是不可变值,函数体内变量值变动时,会重新赋值,则看起来像赋值。

global 与 nonlocal 比较

nonlocal only works in py3

global关键字用来在函数或其他局部作用域中使用全局变量。如果修改全局变量,也可以使用global关键字

nonlocal关键字用来在函数或其他作用域中使用外层(非全局)变量。

亲自动手试后,发现使用了 nonlocal 只会读闭包内的变量,可以隔着多层

init new

Use
new when you need to control the creation of a new instance. Use
init when you need to control initialization of a new instance.

new is the first step of instance creation. It's called first, and is responsible for returning a new instance of your class. In contrast, init doesn't return anything; it's only responsible for initializing the instance after it's been created. [3]

sf 上一哥们类比: new 看作为 alloc 步骤

A metaclass is just the class of a class. a metaclass's
call method controls what happens when call a class. allows you to
redefine the instance-creation mechanism from start to finish
class Singleton(type):    def __init__(self, *args, **kwargs):        super(Singleton, self).__init__(*args, **kwargs)        self.__instance = None    def __call__(self, *args, **kwargs):        if self.__instance is None:            self.__instance = super(Singleton, self).__call__(*args, **kwargs)        return self.__instance__metaclass__ = Singleton

singleton [3]

def singleton(cls):    cls.__new_original__ = cls.__new__        @functools.wraps(cls.__new__)    def singleton_new(cls, *args, **kw):        it = cls.__dict__.get('__it__')        if it is not None:            return it                cls.__it__ = it = cls.__new_original__(cls, *args, **kw)        it.__init_original__(*args, **kw)        return it        cls.__new__ = singleton_new    cls.__init_original__ = cls.__init__    cls.__init__ = object.__init__        return cls

转载地址:http://apsfx.baihongyu.com/

你可能感兴趣的文章
【HDU 1228】A + B
查看>>
CentOS 7搭建SVN服务器
查看>>
Atitit.远程接口 监控与木马 常用的api 标准化v2 q216
查看>>
闭包实现循环事件添加
查看>>
linux创建文件树,孩子兄弟树(或广义表),创建文件树及其訪问
查看>>
实现Runnable接口和继承Thread类区别
查看>>
王帅:深入PHP内核
查看>>
【转】在Xcode中使用Git进行源码版本控制 -- 不错
查看>>
Floyd最短路算法
查看>>
【荐】如何正确理解PHP之include,include_once,require,require_once等包含作用域
查看>>
C#生成PDF总结
查看>>
EFCode First 导航属性
查看>>
Class.forName(String name)方法,到底会触发那个类加载器进行类加载行为?
查看>>
Redis String数据类型
查看>>
再次思考 classpath 环境变量 等
查看>>
flask+sqlite3+echarts3+ajax 异步更新数据
查看>>
C# 使用NPlot绘图技巧
查看>>
H5前端性能测试快速入门
查看>>
Atitit vod ver 12 new feature v12 pb2 影吧 视频 电影 点播 播放系统v12新特性
查看>>
QCustomplot使用分享(三) 图
查看>>