预计……在'{'之前代币

发布于 2024-11-15 07:08:58 字数 609 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

离线来电— 2024-11-22 07:08:58

C 中没有 elseif 这样的东西。它是 else if

There is no such thing as elseif in C. It's else if.

櫻之舞 2024-11-22 07:08:58

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文