std::unique_ptr::operator*
来自cppreference.com
< cpp | memory | unique ptr
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
typename std::add_lvalue_reference<T>::type operator*() const; |
(1) | (C++11 起) |
pointer operator->() const; |
(2) | (C++11 起) |
operator*
和operator->
提供*this所拥有的对象的访问.原文:
operator*
and operator->
provide access to the object owned by *this.目录 |
[编辑] 参数
(无)
[编辑] 返回值
1)返回的对象所拥有的*this,即*get().
2) 原文:
Returns the object owned by *this, i.e. *get().
返回一个指针,指向的对象所拥有的*this,即get().
原文:
Returns a pointer to the object owned by *this, i.e. get().
[编辑] 例外
1)可能抛出异常
2)
[编辑] 示例
#include <iostream> #include <memory> struct Foo { void bar() { std::cout << "Foo::bar\n"; } }; void f(const Foo& 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&)
[编辑] 另请参阅
返回一个指针,指向被管理对象 原文: returns a pointer to the managed object (公共成员函数) |