gpt4 book ai didi

C - while(*Table[i]) 是什么意思/做什么?

转载 作者:太空宇宙 更新时间:2023-11-04 03:35:09 24 4
gpt4 key购买 nike

我需要向数组中添加一个字符串,并且需要一些帮助来弄清楚这意味着什么。这是我所拥有的:

#include <stdio.h>
#include <stdlib.h>
int insert(char *word, char *Table[], int n)
{
//*word is the string to be added, *Table[] is the array, n is
//the return value, which is the number of words in the array after adding *word
int i = 0;
while(*Table[i])
{
if strcmp(*Table[i], *word) == 0)
{
return n;
break;
}
}
}

我不久前写了这篇文章,现在才重温。我不知道 while *Table[i] 是什么意思,因此我不知道后面的代码是什么意思。此外,此代码不完整,所以不要告诉我它不会添加字符串。

最佳答案

* 运算符取消引用指针,[i] 也是如此。

由于 Table 被声明为 char *Table[] 这与 char ** 相同,因为它是指向指针类型(如二维数组)的指针。

在这种情况下,从用法可以明显看出 Table 是一个字符串数组(一个字符串是一个 char 数组(因此是数组类型的数组))。

因此 Table[i] 是指向字符串数组中第 i 个字符串的指针,然后 * 再次取消引用它。作者在这里做的是寻找字符串数组后面的NULL(零),这显然是判断数组结束的方法。

关于C - while(*Table[i]) 是什么意思/做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33292030/

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