René's URL Explorer Experiment


Title: 在 heap 上分配物件 — Python 3.14.0 說明文件

direct link

Domain: python.github.io

readthedocs-addons-api-version1

Links:

https://www.python.org/
目錄https://python.github.io/python-docs-zh-tw/contents.html
在 heap 上分配物件https://python.github.io/python-docs-zh-tw/c-api/allocation.html
被棄用的別名https://python.github.io/python-docs-zh-tw/c-api/allocation.html#deprecated-aliases
物件實作支援https://python.github.io/python-docs-zh-tw/c-api/objimpl.html
物件生命週期https://python.github.io/python-docs-zh-tw/c-api/lifecycle.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/c-api/allocation.rst?plain=1
索引https://python.github.io/python-docs-zh-tw/genindex.html
模組https://python.github.io/python-docs-zh-tw/py-modindex.html
下一頁https://python.github.io/python-docs-zh-tw/c-api/lifecycle.html
上一頁https://python.github.io/python-docs-zh-tw/c-api/objimpl.html
Pythonhttps://www.python.org/
3.14.0 Documentationhttps://python.github.io/python-docs-zh-tw/index.html
Python/C API 參考手冊https://python.github.io/python-docs-zh-tw/c-api/index.html
物件實作支援https://python.github.io/python-docs-zh-tw/c-api/objimpl.html
在 heap 上分配物件https://python.github.io/python-docs-zh-tw/c-api/allocation.html
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#allocating-objects-on-the-heap
PyObjecthttps://python.github.io/python-docs-zh-tw/c-api/structures.html#c.PyObject
PyTypeObjecthttps://python.github.io/python-docs-zh-tw/c-api/type.html#c.PyTypeObject
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c._PyObject_New
PyVarObjecthttps://python.github.io/python-docs-zh-tw/c-api/structures.html#c.PyVarObject
PyTypeObjecthttps://python.github.io/python-docs-zh-tw/c-api/type.html#c.PyTypeObject
Py_ssize_thttps://python.github.io/python-docs-zh-tw/c-api/intro.html#c.Py_ssize_t
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c._PyObject_NewVar
PyObjecthttps://python.github.io/python-docs-zh-tw/c-api/structures.html#c.PyObject
PyObjecthttps://python.github.io/python-docs-zh-tw/c-api/structures.html#c.PyObject
PyTypeObjecthttps://python.github.io/python-docs-zh-tw/c-api/type.html#c.PyTypeObject
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_Init
穩定 ABI 的一部分https://python.github.io/python-docs-zh-tw/c-api/stable.html#stable
__init__()https://python.github.io/python-docs-zh-tw/reference/datamodel.html#object.__init__
tp_inithttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_init
tp_allochttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_alloc
PyType_GenericAlloc()https://python.github.io/python-docs-zh-tw/c-api/type.html#c.PyType_GenericAlloc
PyObject_New()https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_New
PyObjecthttps://python.github.io/python-docs-zh-tw/c-api/structures.html#c.PyObject
PyVarObjecthttps://python.github.io/python-docs-zh-tw/c-api/structures.html#c.PyVarObject
PyVarObjecthttps://python.github.io/python-docs-zh-tw/c-api/structures.html#c.PyVarObject
PyTypeObjecthttps://python.github.io/python-docs-zh-tw/c-api/type.html#c.PyTypeObject
Py_ssize_thttps://python.github.io/python-docs-zh-tw/c-api/intro.html#c.Py_ssize_t
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_InitVar
穩定 ABI 的一部分https://python.github.io/python-docs-zh-tw/c-api/stable.html#stable
PyObject_Init()https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_Init
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_New
PyObject_Malloc()https://python.github.io/python-docs-zh-tw/c-api/memory.html#c.PyObject_Malloc
PyObject_Init()https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_Init
tp_allochttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_alloc
tp_allochttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_alloc
PyType_GenericAlloc()https://python.github.io/python-docs-zh-tw/c-api/type.html#c.PyType_GenericAlloc
tp_allochttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_alloc
tp_newhttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_new
__new__()https://python.github.io/python-docs-zh-tw/reference/datamodel.html#object.__new__
tp_inithttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_init
__init__()https://python.github.io/python-docs-zh-tw/reference/datamodel.html#object.__init__
tp_flagshttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_flags
Py_TPFLAGS_HAVE_GChttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.Py_TPFLAGS_HAVE_GC
PyObject_GC_Newhttps://python.github.io/python-docs-zh-tw/c-api/gcsupport.html#c.PyObject_GC_New
PyObject_Free()https://python.github.io/python-docs-zh-tw/c-api/memory.html#c.PyObject_Free
tp_freehttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_free
tp_inithttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_init
PyObject_Free()https://python.github.io/python-docs-zh-tw/c-api/memory.html#c.PyObject_Free
PyObject_GC_Newhttps://python.github.io/python-docs-zh-tw/c-api/gcsupport.html#c.PyObject_GC_New
PyType_GenericAlloc()https://python.github.io/python-docs-zh-tw/c-api/type.html#c.PyType_GenericAlloc
tp_allochttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_alloc
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_NewVar
PyObject_Newhttps://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_New
tp_itemsizehttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_itemsize
PyObject_InitVar()https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_InitVar
tp_allochttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_alloc
tp_allochttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_alloc
PyType_GenericAlloc()https://python.github.io/python-docs-zh-tw/c-api/type.html#c.PyType_GenericAlloc
tp_flagshttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_flags
Py_TPFLAGS_HAVE_GChttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.Py_TPFLAGS_HAVE_GC
PyObject_GC_NewVarhttps://python.github.io/python-docs-zh-tw/c-api/gcsupport.html#c.PyObject_GC_NewVar
PyObject_Free()https://python.github.io/python-docs-zh-tw/c-api/memory.html#c.PyObject_Free
tp_freehttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_free
tp_inithttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_init
PyObject_Free()https://python.github.io/python-docs-zh-tw/c-api/memory.html#c.PyObject_Free
PyObject_GC_NewVarhttps://python.github.io/python-docs-zh-tw/c-api/gcsupport.html#c.PyObject_GC_NewVar
PyType_GenericAlloc()https://python.github.io/python-docs-zh-tw/c-api/type.html#c.PyType_GenericAlloc
tp_allochttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_alloc
PyObjecthttps://python.github.io/python-docs-zh-tw/c-api/structures.html#c.PyObject
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c._Py_NoneStruct
Py_Nonehttps://python.github.io/python-docs-zh-tw/c-api/none.html#c.Py_None
模組物件https://python.github.io/python-docs-zh-tw/c-api/module.html#moduleobjects
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#deprecated-aliases
soft deprecatedhttps://python.github.io/python-docs-zh-tw/glossary.html#term-soft-deprecated
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_NEW
PyObject_Newhttps://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_New
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_NEW_VAR
PyObject_NewVarhttps://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_NewVar
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_INIT
PyObject_Init()https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_Init
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_INIT_VAR
PyObject_InitVar()https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_InitVar
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_MALLOC
PyObject_Malloc()https://python.github.io/python-docs-zh-tw/c-api/memory.html#c.PyObject_Malloc
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_REALLOC
PyObject_Realloc()https://python.github.io/python-docs-zh-tw/c-api/memory.html#c.PyObject_Realloc
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_FREE
PyObject_Free()https://python.github.io/python-docs-zh-tw/c-api/memory.html#c.PyObject_Free
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_DEL
PyObject_Free()https://python.github.io/python-docs-zh-tw/c-api/memory.html#c.PyObject_Free
https://python.github.io/python-docs-zh-tw/c-api/allocation.html#c.PyObject_Del
PyObject_Free()https://python.github.io/python-docs-zh-tw/c-api/memory.html#c.PyObject_Free
目錄https://python.github.io/python-docs-zh-tw/contents.html
在 heap 上分配物件https://python.github.io/python-docs-zh-tw/c-api/allocation.html
被棄用的別名https://python.github.io/python-docs-zh-tw/c-api/allocation.html#deprecated-aliases
物件實作支援https://python.github.io/python-docs-zh-tw/c-api/objimpl.html
物件生命週期https://python.github.io/python-docs-zh-tw/c-api/lifecycle.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/c-api/allocation.rst?plain=1
索引https://python.github.io/python-docs-zh-tw/genindex.html
模組https://python.github.io/python-docs-zh-tw/py-modindex.html
下一頁https://python.github.io/python-docs-zh-tw/c-api/lifecycle.html
上一頁https://python.github.io/python-docs-zh-tw/c-api/objimpl.html
Pythonhttps://www.python.org/
3.14.0 Documentationhttps://python.github.io/python-docs-zh-tw/index.html
Python/C API 參考手冊https://python.github.io/python-docs-zh-tw/c-api/index.html
物件實作支援https://python.github.io/python-docs-zh-tw/c-api/objimpl.html
在 heap 上分配物件https://python.github.io/python-docs-zh-tw/c-api/allocation.html
版權所有https://python.github.io/python-docs-zh-tw/copyright.html
歷史與授權條款https://python.github.io/license.html
敬請捐贈。https://www.python.org/psf/donations/
發現 bughttps://python.github.io/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.