Difference between `const shared_ptrlt;Tgt;` and `shared_ptrlt;const Tgt;`?(`const shared_ptrT`和`shared_ptrconst T`之间的区别?)
问题描述
我正在为 C++ 中的共享指针编写一个访问器方法,它是这样的:
I'm writing an accessor method for a shared pointer in C++ that goes something like this:
class Foo {
public:
return_type getBar() const {
return m_bar;
}
private:
boost::shared_ptr<Bar> m_bar;
}
所以为了支持 getBar()
的常量性,返回类型应该是一个 boost::shared_ptr
以防止修改 Bar
> 它指向.我的猜测是 shared_ptr
是我想要返回的类型,而 const shared_ptr
会阻止重新分配指针本身指向不同的 Bar
但允许修改它指向的 Bar
... 但是,我不确定.如果知道的人可以确认这一点,或者如果我弄错了,我将不胜感激.谢谢!
So to support the const-ness of getBar()
the return type should be a boost::shared_ptr
that prevents modification of the Bar
it points to. My guess is that shared_ptr<const Bar>
is the type I want to return to do that, whereas const shared_ptr<Bar>
would prevent reassignment of the pointer itself to point to a different Bar
but allow modification of the Bar
that it points to... However, I'm not sure. I'd appreciate it if someone who knows for sure could either confirm this, or correct me if I got it wrong. Thanks!
推荐答案
你说得对.shared_ptr
类似于const T * p;
(或等价于T const * p;
),即指向的对象是const
而 const shared_ptr
与 T* const p;
类似,这意味着 p
是 const
.总结:
You are right. shared_ptr<const T> p;
is similar to const T * p;
(or, equivalently, T const * p;
), that is, the pointed object is const
whereas const shared_ptr<T> p;
is similar to T* const p;
which means that p
is const
. In summary:
shared_ptr<T> p; ---> T * p; : nothing is const
const shared_ptr<T> p; ---> T * const p; : p is const
shared_ptr<const T> p; ---> const T * p; <=> T const * p; : *p is const
const shared_ptr<const T> p; ---> const T * const p; <=> T const * const p; : p and *p are const.
同样适用于 weak_ptr
和 unique_ptr
.
这篇关于`const shared_ptr<T>`和`shared_ptr<const T>`之间的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:`const shared_ptr<T>`和`shared_ptr<const T>`之间的区别?
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01