std::unique_ptr<T,Deleter>::operator*, std::unique_ptr<T,Deleter>::operator->
来自 cppreference.com
< cpp | memory | unique ptr
typename std::add_lvalue_reference<T>::type operator*() const noexcept(noexcept(*std::declval<pointer>())); |
(1) | (自 C++11 起) (自 C++23 起为 constexpr) |
pointer operator->() const noexcept; |
(2) | (自 C++11 起) (自 C++23 起为 constexpr) |
operator*
和 operator->
提供对 *this 所拥有的对象的访问。
如果 get() == nullptr,则行为未定义。
这些成员函数仅针对 unique_ptr
提供,用于单个对象,即主模板。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
1) 返回 *this 所拥有的对象,等效于 *get()。
2) 返回指向 *this 所拥有的对象的指针,即 get()。
[编辑] 异常
1) 如果
pointer
具有抛出异常的 operator*
,则可能抛出异常。[编辑] 备注
使用 std::add_lvalue_reference 的目的是为了能够实例化 std::unique_ptr<void>,因为在 C++ 中不允许使用 void&,而 std::add_lvalue_reference<void> 会生成 void。有关详细信息,请参阅 LWG673。
[edit] 示例
运行此代码
#include <iostream> #include <memory> struct Foo { void bar() { std::cout << "Foo::bar\n"; } }; void f(const Foo&) { std::cout << "f(const Foo&)\n"; } int main() { std::unique_ptr<Foo> ptr(new Foo); ptr->bar(); f(*ptr); }
输出
Foo::bar f(const Foo&)
[edit] 缺陷报告
以下行为更改的缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 2762 | C++11 | operator* 可能引发异常,即使*get() 是 noexcept |
添加了条件异常说明 |
[edit] 另请参阅
返回指向托管对象的指针 (公共成员函数) |