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

履歴 編集

function
<chrono>

std::chrono::time_point::operator+=(C++11)

time_point& operator+=(const duration& d);           // C++11
constexpr time_point& operator+=(const duration& d); // C++17

概要

time_pointの時間を進める

効果

d_ += d;

d_time_point内部で保持しているduration。変数名は説明用。

戻り値

*this

#include <iostream>
#include <chrono>

using namespace std::chrono;

int main()
{
  system_clock::time_point p = system_clock::now();
  p += seconds(3);

  std::cout << p.time_since_epoch().count() << std::endl;
}

出力例

1314361514726936

バージョン

言語

  • C++11

処理系

参照