溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python中如何引用計(jì)數(shù)

發(fā)布時(shí)間:2021-07-10 16:15:44 來(lái)源:億速云 閱讀:297 作者:Leah 欄目:編程語(yǔ)言

Python中如何引用計(jì)數(shù),很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

變量是內(nèi)存引用

Python中的變量是內(nèi)存引用。如果輸入x = [1,2]時(shí)會(huì)發(fā)生什么?[1,2]是對(duì)象。

回想一下,一切都是Python中的對(duì)象。[1,2]將在內(nèi)存中創(chuàng)建。x是[1,2]對(duì)象的內(nèi)存引用。

來(lái)看看下面的例子??梢哉业絰所引用的內(nèi)存地址。請(qǐng)務(wù)必只使用id(x),它會(huì)以10為基數(shù),而十六進(jìn)制函數(shù)會(huì)將其轉(zhuǎn)換為十六進(jìn)制。

x = [1, 2]    print(hex(id(x)))  # output: 0x32ebea8
Python中如何引用計(jì)數(shù)

引用計(jì)數(shù)

現(xiàn)在已經(jīng)在內(nèi)存中創(chuàng)建了一個(gè)list對(duì)象,而且x對(duì)該對(duì)象進(jìn)行了引用。那么y=[1,2]和y=x有什么區(qū)別?

當(dāng)輸入y=[1,2]時(shí),它將在內(nèi)存中創(chuàng)建一個(gè)新的list對(duì)象,并且y將引用它。

x = [1, 2]    y = [1, 2]    print(hex(id(x)))  # output: 0x101bea8    print(hex(id(y)))  # output: 0x31a5528

而當(dāng)輸入y=x時(shí),等同于告訴Python希望y 變量引用x變量引用的內(nèi)容。因?yàn)樽兞渴莾?nèi)存引用的。

可以確認(rèn)x和y引用同一個(gè)對(duì)象。

x = [1, 2]    y = x    print(hex(id(x)))  # output: 0x74bea8    print(hex(id(y)))  # output: 0x74bea8
Python中如何引用計(jì)數(shù)

引用計(jì)數(shù)的數(shù)目

接下來(lái)的問(wèn)題是,有多少變量引用同一個(gè)對(duì)象?

錯(cuò)誤的用法:

我看到有些人在使用sys.getrefcount(var)時(shí)不知道如何傳遞var,而是向?qū)ο筇砑右?。一起看看下面的例子?/p>

輸出3,而期望的卻是2(x andy)。發(fā)生這種情況是因?yàn)閷傳遞給getrefcount函數(shù)時(shí)又添加了一個(gè)引用。

from sys import getrefcount           x = [1, 2]           y = x           print(hex(id(x)))  # output: 0xb65748           print(hex(id(y)))  # output: 0xb65748           print(getrefcount(x))  # output: 3

更好的用法:

可以使用內(nèi)置的ctypes模塊來(lái)找到預(yù)期的結(jié)果。必須將x的id傳遞給from_address函數(shù)。

from ctypes import c_long       x = [1, 2]       y = x       print(hex(id(x)))  # output: 0x3395748       print(hex(id(y)))  # output: 0x3395748       print(c_long.from_address(id(x)).value)  # output: 2

概言之,錯(cuò)誤的用法是傳遞變量,而更好的用法則是傳遞變量的id,這意味著只傳遞基數(shù)為10的數(shù)字,而不是變量。

當(dāng)對(duì)象消失時(shí)

當(dāng)沒(méi)有變量引用對(duì)象時(shí)會(huì)發(fā)生什么?

對(duì)象將從內(nèi)存中刪除,因?yàn)闆](méi)有引用該對(duì)象的內(nèi)容。不過(guò)也有例外:如果有循環(huán)引用,garbage collector 將開(kāi)始奏效。

為什么使用可變對(duì)象

不可變對(duì)象由于性能原因,結(jié)果可能與預(yù)期不同。查看下面的例子,觀察輸出是如何變化的。

import sys       import ctypes              """Some Mutable Objects """       a =list()       b =set()       c =dict()       d =bytearray()       """ Some ImmutableObjects """       e =tuple()       f =int()       g =str()       print(sys.getrefcount(a),ctypes.c_long.from_address(id(a)).value)  # output: 2 1       print(sys.getrefcount(b),ctypes.c_long.from_address(id(b)).value)  # output: 2 1       print(sys.getrefcount(c),ctypes.c_long.from_address(id(c)).value)  # output: 2 1       print(sys.getrefcount(d),ctypes.c_long.from_address(id(d)).value)  # output: 2 1       print(sys.getrefcount(e),ctypes.c_long.from_address(id(e)).value)  # output: 1298 1297       print(sys.getrefcount(f),ctypes.c_long.from_address(id(f)).value)  # output: 209 208       print(sys.getrefcount(g),ctypes.c_long.from_address(id(g)).value)  # output: 59 58

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI