Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
458 views
in Technique[技术] by (71.8m points)

python - Why does sys.getrefcount() return 2?

As I understand, sys.getrefcount() returns the number of references of an object, which "should" be 1 in the following case:

import sys,numpy
a = numpy.array([1.2,3.4])
print sys.getrefcount(a)

However, it turned out to be 2! So, if I:

del a

Will the "numpy.array([1.2,3.4])" object still be there (no garbage collection)?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

When you call getrefcount(), the reference is copied by value into the function's argument, temporarily bumping up the object's reference count. This is where the second reference comes from.

This is explained in the documentation:

The count returned is generally one higher than you might expect, because it includes the (temporary) reference as an argument to getrefcount().

As to your second question:

If I "del a", will the "numpy.array([1.2,3.4])" object still be there (no garbage collection)?

By the time getrefcount() exits, the array's reference count will to back to 1, and a subsequent del a would release the memory.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...