gpt4 book ai didi

c - C 中的指针。为什么该函数不起作用?

转载 作者:行者123 更新时间:2023-11-30 19:55:37 26 4
gpt4 key购买 nike

Possible Duplicate:
Why does strcmp() return 0 when its inputs are equal?
strcmp results in false when strings are equal

我真的不明白为什么函数检查返回true!我使用 strcmp 来比较 char[] 指针 (hello) 和字符数组“bar”。

bool check(const char* word);
char pointer[] = "hello";

int main (void)
{
bool answer = check(pointer) ;

if(answer == true)
printf("true");
else
printf("false");

return 0;
}

bool check(const char* word)
{
printf(" word = %s ", word);

if(strcmp( word , "bar"))
return true;
else
return false;
}

最佳答案

我真的不明白为什么函数检查返回 true!!!

有趣的是,在原始的基本 C 代码中,如果不包含一些额外的头文件(如 stdbool.h),就没有“true”或“false”(或“bool”)...但我离题了..

它没有返回 true。阅读 strcmp() 上的手册。您可以在 Linux 上通过 man 3 strcmp 或仅通过 google 搜索“man strcmp”来完成此操作。

手册会告诉你函数的返回值为:

... an integer less than, equal to, or greater than zero if s1 (or the first n bytes thereof) is found, respectively, to be less than, to match, or be greater than s2.

请记住,对于条件检查,所有非 0 的整数值都将被视为“true”。也就是说,在这段代码中:

if(strcmp(word, "bar"))

任何不是“bar”的单词都将是“true”。您想要的匹配是它是否等于零:

if(strcmp(word, "bar") == 0)
<小时/>

旁注,如果您要像使用一样在全局范围内声明某些内容

char pointer[] = "hello";  

不需要将其传递给函数,您可以全局访问它,这就是全局的要点。然而,全局变量通常不受欢迎。

关于c - C 中的指针。为什么该函数不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14594649/

26 4 0
文章推荐: C代码运行时崩溃
文章推荐: 通过汇编比较 2 个数字
文章推荐: c - 在 C 中返回 char*
文章推荐: c - NULL 宏和 nul
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com