首页 > 代码库 > gcc: dereferencing pointer to incomplete type错误

gcc: dereferencing pointer to incomplete type错误

/*********************************************************************
 * Author  : Samson
 * Date    : 07/27/2014
 * Test platform:
 *              Mint 15
 *              GNU bash, version 4.2.45
 * *******************************************************************/

当在进行gcc编译的时候,遇到这么一个错误:

dereferencing pointer to incomplete type是什么错误?

你的指针,有一个类型,这个类型是不完全的。也就是说,你只给出了这个类型的声明,没有给出其定义。你这里的类型多半是结构,联合之类的东西。


这个错误其实是因为某结构体或联合的字段名所指的变量定义的头文件没有引入到当前C代码中而造成的错误,只要找到出错对应的变量的结构体或联合的定义的头文件,并把这些头文件包含进来即可解决此问题;