我在读一本关于python的书:Once we have some data types, the next thing we need are variables in which
to store them. Python doesn’t have variables as such, but instead has object
references. When it comes to immutable objects like ints and strs, there is
no discernable difference between a variable and an object reference. As for
mutable objects, there is a difference, but it rarely matters in practice.”
现在没有提到有什么区别,我无法澄清自己的概念。在
什么是对象引用(是cpython的内存地址)?
实际上,变量是绑定到对象引用的名称(我对内存引用的理解是,它是cpython内存中的一个地址,如果我错了,请清除我的错误)。在
如果能根据它在C中的内部实现以及这些东西是如何在内部管理和工作的,那么它将很有帮助。在
另外,如果能提供一些详细解释cpython实现的资源,这将是很有帮助的。在
版权声明:本文为weixin_39765100原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。