参见英文答案 >
Do I cast the result of malloc?26个
在C中,我们可以将void *转换为任何其他指针.
在C中,我们可以将void *转换为任何其他指针.
但是C禁止它.
int *a = malloc(4);
导致此错误:
invalid conversion from ‘void*’ to ‘int*’ [-fpermissive]
这里有潜在的危险吗?
有没有c的例子?
解决方法
在C中,与C不同,您必须转换malloc的结果.您的代码可以通过简单的强制转换调整为工作顺序.
int *a = (int *)malloc(sizeof(int));
关于这个强制性演员的一篇很棒的文章及其背后的原因can be found here.
参考号can be found here.的附加链接
编辑:正如评论中所建议的那样,malloc()的使用不应该是司空见惯的.最接近的选择是使用new来分配.
int *a = new int[15];
附加编辑:正如评论中再次建议的那样,如果必须使用malloc(),至少要使用C强制转换.
int *a = static_cast<int*>malloc(sizeof(int)); // shout out to @edheal,@mgetz