这是我的代码:
#include <stdio.h>
#include <libxml/parser.h>
#include <libxml/tree.h>
static void print_element_names(xmlNode * a_node)
{
xmlNode *cur_node = NULL;
for (cur_node = a_node; cur_node; cur_node = cur_node->next) {
if (cur_node->type == XML_ELEMENT_NODE) {
printf("node type: Element, name: %s\n", cur_node->name);
}
print_element_names(cur_node->children);
}
}
int main(int argc, char **argv)
{
xmlDoc *doc = NULL;
xmlNode *root_element = NULL;
if (argc != 2) return(1);
LIBXML_TEST_VERSION // Macro to check API for match with
// the DLL we are using
/*parse the file and get the DOM */
if (doc = xmlReadFile("http://www.w3schools.com/xml/note.xml", NULL, 0) == NULL){
printf("error: could not parse file %s\n", argv[1]);
exit(-1);
}
/*Get the root element node */
root_element = xmlDocGetRootElement(doc);
print_element_names(root_element);
xmlFreeDoc(doc); // free document
xmlCleanupParser(); // Free globals
return 0;
}
当我使用Visual Studio Pro 2015(Windows 8,64位)构建它时,我收到以下错误:
a value of type "bool" cannot be assigned to an entity of type "xmlDoc *"
Error C2440 '=': cannot convert from 'bool' to 'xmlDoc *'
从代码中可以看出xmlDoc或xmlReadFile的类型为bool,但是根据此处的文档 - http://www.xmlsoft.org/html/libxml-parser.html#xmlReadFile和http://www.xmlsoft.org/html/libxml-tree.html#xmlDoc这些似乎都不是bool类型。
我通常用PHP编写代码,这是我的第一个C应用程序,所以我是新手。
GTK:我正在创建:文件&gt;新&gt;项目&gt; VC ++&gt;空项目
你能告诉我我的代码有什么问题吗?如果它不是数据类型。