gpt4 book ai didi

python - 在 Python C API 中,为什么包装函数是静态的

转载 作者:行者123 更新时间:2023-11-28 21:52:19 25 4
gpt4 key购买 nike

所以我有下面用 C 扩展 python 的示例代码

#include <python.h>

static PyObject* sayhello(PyObject* self, PyObject *args) {
const char* name;

if (!PyArg_ParseTuple(arg, "s", &name))
return NULL;

printf("Hello %s !\n", name);

Py_RETURN_NONE;
}

static PyMethodDef HelloMethods[] =
{
{"say_hello", say_hello, METH_VARARGS, "Greet Somebody."},
{NULL, NULL, 0, NULL}
};

PyMODINIT_FUNC inithello(void) {
(void) Py_InitModule("hello", HelloMethods);
}

我的问题是为什么下面的包装函数是静态的

   static PyObject* sayhello(PyObject* self, PyObject *args) {

最佳答案

如果不需要在其源文件之外通过名称引用/链接 C 中的函数,则它可以保持静态。在这种情况下,Python 链接是使用源文件中的引用完成的,因此不需要外部链接。如果该函数在外部可见,代码也能正常工作,但为什么要污染您的 namespace ?

关于python - 在 Python C API 中,为什么包装函数是静态的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28493847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com