std::unique_ptr<T,Deleter>::get
来自 cppreference.com
< cpp | memory | unique ptr
pointer get() const noexcept; |
(自 C++11 起) (自 C++23 起为 constexpr) |
|
返回指向托管对象的指针,或者如果未拥有任何对象则返回 nullptr。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
指向托管对象的指针,或者如果未拥有任何对象则返回 nullptr。
[编辑] 示例
运行此代码
#include <iomanip> #include <iostream> #include <memory> #include <string> #include <utility> class Res { std::string s; public: Res(std::string arg) : s{std::move(arg)} { std::cout << "Res::Res(" << std::quoted(s) << ");\n"; } ~Res() { std::cout << "Res::~Res();\n"; } private: friend std::ostream& operator<<(std::ostream& os, Res const& r) { return os << "Res { s = " << std::quoted(r.s) << "; }"; } }; int main() { std::unique_ptr<Res> up(new Res{"Hello, world!"}); Res* res = up.get(); std::cout << *res << '\n'; }
输出
Res::Res("Hello, world!"); Res { s = "Hello, world!"; } Res::~Res();
[编辑] 另请参见
返回指向托管对象的指针并释放所有权 (公有成员函数) |