warning: returning ‘int’ from a function with return type ‘vo id *’ makes pointer from integer without a cast [-Wint-conversion]
时间: 2023-07-02 15:06:57 浏览: 865
Function_pointer_returning_function_pointer
这个警告信息提示你在一个返回类型为 `void*` 的函数中返回了一个整数,而没有进行强制类型转换。这种情况可能会导致程序在运行时出现错误。
常见的原因是在函数中使用了 `malloc` 或 `calloc` 等动态内存分配函数,并且没有正确地将返回值转换成 `void*` 类型。
解决这个问题的方法是在返回值前进行强制类型转换,例如:
```c
void *my_func() {
int *p = malloc(sizeof(int));
*p = 42;
return (void*)p;
}
```
这里在返回值前使用了强制类型转换将 `int*` 转换成了 `void*` 类型,避免了警告信息的出现。
阅读全文