最終更新日時(UTC):
が更新

履歴 編集

function
<memory>

std::unique_ptr::operator->(C++11)

pointer operator->() const noexcept;           // (1) C++11
constexpr pointer operator->() const noexcept; // (1) C++23

概要

ポインタを通してオブジェクトにアクセスする。

要件

get() != nullptr

戻り値

get()

#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

処理系

参照