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

履歴 編集

function
<memory>

std::unique_ptr::operator[](C++11)

T& operator[](std::size_t i) const;           // (1) C++11
constexpr T& operator[](std::size_t i) const; // (1) C++23

概要

任意の位置の要素にアクセスする。

要件

iが、保持している動的配列の要素数より小さいこと。

戻り値

get()[i]

#include <iostream>
#include <memory>

int main()
{
  std::unique_ptr<int[]> p(new int[3]);

  p[0] = 3;
  p[1] = 1;
  p[2] = 4;

  int& front = p[0];
  std::cout << front << std::endl;
}

出力

3

バージョン

言語

  • C++11

処理系

参照