预计……在'{'之前代币
在 libxml 和 c 中工作,我有这个代码片段:
if (!xmlStrcmp(cur->name, (const xmlChar *)"headline")) {
key = xmlNodeListGetString(doc,cur->xmlChildrenNode,1);
conf_var.headline=key;
xmlFree(key);
}
elseif (!xmlStrcmp(cur->name, (const xmlChar *)"para")) {
key = xmlNodeListGetString(doc,cur->xmlChildrenNode,1);
conf_var.para=key;
xmlFree(key);
}
当我编译这个时,我收到以下错误:things.c:29:59: error: Expected ';'在“{”标记之前,
引用的行是 elseif 行。我真的不知道这里出了什么问题,因为相同的代码在 if 命令中就在它上面工作。这是怎么回事?
working in libxml and c, I have this code snippit:
if (!xmlStrcmp(cur->name, (const xmlChar *)"headline")) {
key = xmlNodeListGetString(doc,cur->xmlChildrenNode,1);
conf_var.headline=key;
xmlFree(key);
}
elseif (!xmlStrcmp(cur->name, (const xmlChar *)"para")) {
key = xmlNodeListGetString(doc,cur->xmlChildrenNode,1);
conf_var.para=key;
xmlFree(key);
}
When I compile this, I get the following error: things.c:29:59: error: expected ‘;’ before ‘{’ token
the line reffered is the elseif line. I really don't know what is wrong here, as the same bit of code works just above it in the if command. What's wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
C 中没有
elseif
这样的东西。它是else if
。There is no such thing as
elseif
in C. It'selse if
.C 中没有
elseif
,因此编译器认为它是一条语句并等待终止符 (;
)。请改用
else if
。There is no
elseif
in C, so the compiler thinks that it is an statement and waits for a terminator (;
).Use
else if
, instead.