gpt4 book ai didi

c++ - 为什么我不能在赋值的右侧放置一个指向 const 的指针?

转载 作者:可可西里 更新时间:2023-11-01 16:01:10 25 4
gpt4 key购买 nike

为什么我不能将 const int *cp1 放在赋值的右侧?请看这个样本

int x1 = 1;
int x2 = 2;

int *p1 = &x1;
int *p2 = &x2;

const int *cp1 = p1;

p2 = p1; // Compiles fine

p2 = cp1; //===> Complilation Error

为什么我在指示的位置出现错误?毕竟我不想更改一个常量值,我只是想使用一个常量值。

我是不是漏掉了什么。

最佳答案

After all I am not trying to change a constant value

从“指向 const 的指针”到“指向非常量的指针”的隐式转换是不允许的,因为这样可以更改常量值。考虑以下代码:

const int x = 1;
const int* cp = &x; // fine
int* p = cp; // should not be allowed. nor int* p = &x;
*p = 2; // trying to modify constant (i.e. x) is undefined behaviour

顺便说一句:对于您的示例代码,使用 const_cast会很好,因为 cp1 实际上指向非常量变量(即 x1)。

p2 = const_cast<int*>(cp1);

关于c++ - 为什么我不能在赋值的右侧放置一个指向 const 的指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38864137/

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