gpt4 book ai didi

c++ - 从 int** 到 const int** 的无效转换

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:23:10 24 4
gpt4 key购买 nike

我有一个类,其中包含一个实现为 int** 的 2D 数组。我如下实现了这个二维数组的访问器函数,返回一个 const int** 以防止用户能够编辑它:

const int** Class::Access() const
{
return pp_array;
}

但是我得到了编译错误“从 int** 到 const int** 的无效转换”。为什么这里不允许升级到 const?如何让用户访问信息而无需编辑权限?

最佳答案

Greyson 是正确的,您将要使用 const int* const*,但没有解释您的原始版本失败的原因。

这里演示了为什么 int**const int** 不兼容:

const int ci = 0;
const int* pci = &ci;
int* pi;
int** ppi = π
const int** ppci = ppi; // this line is the lynchpin
*ppci = pci;
*pi = 1; // modifies ci!

关于c++ - 从 int** 到 const int** 的无效转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10442403/

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