关于python:obrefcnt是什么缩写是什么意思

5次阅读

共计 124 个字符,预计需要花费 1 分钟才能阅读完成。

意思就是 object reference count 缩写,即援用计数

typedef struct _object {
    _PyObject_HEAD_EXTRA
    Py_ssize_t ob_refcnt;
    PyTypeObject *ob_type;
} PyObject;
正文完
 0