gpt4 book ai didi

c++ - 没有从 long unsigned int 到 long unsigned int& 的转换

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:15:22 25 4
gpt4 key购买 nike

当我尝试编译以下内容时,收到错误消息 No known conversion for argument 2 from long unsigned int to long unsigned int&代码:

void build(int* &array, unsigned long& index) {
if (index == 0)
return;
else {
heapify(array, index);
build(array, index-1);
}
}

谁能解释为什么会这样,这个错误背后的逻辑是什么?

最佳答案

build 的第二个参数需要引用(用& 标记)。引用有点像指针,因此您只能使用具有内存地址的实际变量。

这就是为什么您不能使用像 index-1 这样的表达式的原因。

关于c++ - 没有从 long unsigned int 到 long unsigned int& 的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11406304/

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