gpt4 book ai didi

c++ - const_casting 问题

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

<分区>

我有以下代码:

int main(){
const int a = 1;
const int* b(&a);
int* c = const_cast<int*>(b);
*c = 29;
cout<<*c<<a<<*b;
return EXIT_SUCCESS;
}

为什么'a'的值没有变成29?这是否意味着在 const_casting b 时没有去除 a 的常量性?

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