Questions tagged «memory-footprint»

7
Python结构的内存大小
是否有关于32位和64位平台上Python数据结构的内存大小的参考? 如果没有,那么将其放在SO上会很好。越详尽越好!那么以下Python结构使用了多少字节(取决于相关时的len和内容类型)? int float 参考 str unicode字符串 tuple list dict set array.array numpy.array deque 新型类对象 旧式类对象 ...以及我忘记的一切! (对于仅保留对其他对象的引用的容器,我们显然不希望自己计算项目的大小,因为它可能是共享的。) 此外,是否有一种方法可以获取对象在运行时使用的内存(递归与否)?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.