ob_refcnt是什么缩写?是什么意思?

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

typedef struct _object {
    _PyObject_HEAD_EXTRA
    Py_ssize_t ob_refcnt;
    PyTypeObject *ob_type;
} PyObject;

你可能感兴趣的:(python)