error: #852: expression must be a pointer to a complete object type 解决方法

错误示例:

int32 par_write(const void *buf, int32 count, PARTITION* fp)

{
    ……
    memcpy(data,buf + totalWrite - 1,actualWrite);
    ……
    
}

首先看下:

memcpy的函数声明:

void *memcpy(void *dest, const void *src, size_t n);

看起来形参buf是void*,传入的也是同样的类型,但为什么会报error: #852: expression must be a pointer to a complete object type呢?

原因是对void*类型buf变量进行了位移,即buf + totalWrite - 1 ,而编译器不知道你一个位移是多大,取决于buf实际的类型。如果是(char*)型,那么位移时按一个字节位移,如果是(int*)型,那么位移时按4个(32位机)字节位移,因此编译器不清楚属于哪一种,会报错。

解决方法:

将buf强制转化成实际调用时的类型,大多数情况是(char*):

memcpy(data,(uint8*)(buf + totalWrite - 1),actualWrite); //错误
memcpy(data,((uint8*)buf + totalWrite - 1),actualWrite); //正确

 

你可能感兴趣的:(error: #852: expression must be a pointer to a complete object type 解决方法)