gpt4 book ai didi

c++ - 使用 malloc 时从 `void*' 到 `char*' 的无效转换?

转载 作者:IT老高 更新时间:2023-10-28 13:58:13 26 4
gpt4 key购买 nike

我在下面的代码中遇到问题,第 5 行出现错误:

error: invalid conversion from void* to char*

我正在使用带有代码块的 g++,并尝试将此文件编译为 cpp 文件。有关系吗?

#include <openssl/crypto.h>
int main()
{
char *foo = malloc(1);
if (!foo) {
printf("malloc()");
exit(1);
}
OPENSSL_cleanse(foo, 1);
printf("cleaned one byte\n");
OPENSSL_cleanse(foo, 0);
printf("cleaned zero bytes\n");
}

最佳答案

在 C++ 中,需要强制转换 malloc()

的返回
char *foo = (char*)malloc(1);

关于c++ - 使用 malloc 时从 `void*' 到 `char*' 的无效转换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5099669/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com