pointer operator->() const noexcept; // (1) C++11
constexpr pointer operator->() const noexcept; // (1) C++23
概要
ポインタを通してオブジェクトにアクセスする。
要件
get() != nullptr
戻り値
例
#include <iostream>
#include <memory>
#include <string>
int main()
{
std::unique_ptr<std::string> p(new std::string("hello"));
std::cout << p->c_str() << std::endl;
}
出力
hello
バージョン
言語
- C++11
処理系
- GCC: 4.4.7 ✅
- Clang: 3.0 ✅
- ICC: ?
- Visual C++: 2010 ✅, 2012 ✅, 2013 ✅