gpt4 book ai didi

c++ - 定义 const scope_refptr() 有意义吗?

转载 作者:行者123 更新时间:2023-11-28 08:00:16 24 4
gpt4 key购买 nike

scoped_refptr<any_class> a_scoped_refptr;
const scoped_refptr<any_class> something = a_scoped_refptr; // Compile error.

如果是const我们就不能修改ref_counter了,但是我想暗示指针指向的内容不应该改变,怎么办?

最佳答案

两件事:

首先,您没有提到编译器错误,但我猜这是一个简单的语法错误,因为您没有为 scoped_refptr 指定变量名。

其次,如果您想要一个指向 const 对象的指针,请将其指定为指针类型。所以尝试:

scoped_refptr<any_class const> myPointer = a_scoped_refptr;

关于c++ - 定义 const scope_refptr() 有意义吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11656764/

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