• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <memory>

    std::unique_ptr::get

    pointer get() const noexcept;           // (1) C++11
    constexpr pointer get() const noexcept; // (1) C++23
    

    概要

    リソースを取得する。

    戻り値

    保持しているポインタを返す。

    備考

    リソースの所有権は*thisが持っているので、この関数によって返されたポインタに対して、リソース解放をしてはならない。

    #include <iostream>
    #include <memory>
    
    int main()
    {
      std::unique_ptr<int> p(new int(3));
    
      // リソースを取得
      int* raw_pointer = p.get();
      std::cout << *raw_pointer << std::endl;
    }
    

    出力

    3
    

    バージョン

    言語

    • C++11

    処理系

    参照