gpt4 book ai didi

c - 将指针设置为 NULL 会产生 "assignment makes integer from pointer without a cast"警告

转载 作者:行者123 更新时间:2023-11-30 20:48:23 24 4
gpt4 key购买 nike

我阅读了有关它的其他问题,但仍然无法理解是什么导致了我收到的警告。

char* func(const char* oldList) {
static char* newList = NULL;

if (oldList == NULL) {
*newList = NULL;
}
...
}

我收到的警告是“赋值从指针生成整数而不进行强制转换”(对于行*newList = NULL)。为什么?

最佳答案

newList 是一个指向字符的指针。

*newList 是指针指向的字符。

因此,分配*newList = NULL尝试将指针(NULL)分配给字符 - 从而进行强制转换。

在此特定代码中,即使您进行某种类型的转换,仍然会出现段错误,因为 newList = NULL

您可能想写:

if (oldList == NULL) {
newList = NULL;
}

关于c - 将指针设置为 NULL 会产生 "assignment makes integer from pointer without a cast"警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41543197/

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