gpt4 book ai didi

python - 错误 : expected declaration specifiers or '...' before string constant

转载 作者:太空宇宙 更新时间:2023-11-04 01:23:58 25 4
gpt4 key购买 nike

我在模仿另一个文件中的用法的特定行上收到错误。

PyObject *pyCharGetHeight(PyChar *self, void *closure) {
CHAR_DATA *ch = PyChar_AsChar((PyObject *)self);
PyObject *height = NULL;
if(ch != NULL) height = Py_BuildValue("s", charGetHeight(ch));
return height;
}

PyChar_addGetSetter("height", pyCharGetHeight, NULL, "Returns character's height");

返回以下错误,PyChar_addGetSetter...行

error: expected declaration specifiers or â...â before string constant

我正在使用以下内容:

#include <Python.h>
#include "../scripts/pychar.h"

并且 pychar.h 确实将 PyChar_addGetSetter() 定义为此处的原型(prototype):

void PyChar_addGetSetter(const char *name, void *g, void *s, const char *doc);

函数写在../scripts/pychar.c中如下:

void PyChar_addGetSetter(const char *name, void *g, void *s, const char *doc) {
// make sure our list of get/setters is created
if(pychar_getsetters == NULL) pychar_getsetters = newList();

// make the GetSetter def
PyGetSetDef *def = calloc(1, sizeof(PyGetSetDef));
def->name = strdup(name);
def->get = (getter)g;
def->set = (setter)s;
def->doc = (doc ? strdup(doc) : NULL);
def->closure = NULL;
listPut(pychar_getsetters, def);
}

似乎无法识别结构或类型,我在猜测我的功能。

最佳答案

看起来您正在尝试调用 .c 文件顶层的函数。你不能那样做。

错误信息可能会好一点,但看起来 gcc 将其解释为试图声明一个名为 PyChar_addGetSetter 的类型和/或声明该类型的全局变量,但失败了以任何一种方式解释它,并告诉你为什么尝试失败。

关于python - 错误 : expected declaration specifiers or '...' before string constant,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19371206/

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