gpt4 book ai didi

c - "Type** variable"是什么意思?

转载 作者:行者123 更新时间:2023-11-30 21:16:09 26 4
gpt4 key购买 nike

有人可以向我解释一下 Cat 后面的 ** 的用途吗?如果是指向指针的指针,不是应该有空格吗?

    Cat fetch_and_kill_oldest(Cat** cat_array, int length){
//This function tries to find the oldest cat, take away one life,
Cat temp = cat_array[0];
for(int i = 1; i < length; i++){
if (cat_array[i].age > temp.age){
temp = cat_array[i];
}
}
temp.lives -= 1;
return temp;
//stop here
}

最佳答案

这个:

Cat** cat_array

与此相同:

Cat **cat_array

后者是首选,因为它更清楚指针所指的内容。例如,如果您有这样的声明:

int* a, b;

乍一看,ab 可能都是指针,但实际上只有 a 是指针。通过以下方式格式化它会更明显:

int *a, b;

关于c - "Type** variable"是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37305584/

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