共用方式為


operator+ 運算子 (STL)

期間time_point 物件。

template<class Rep1, class Period1, class Rep2, class Period2>
   constexpr typename common_type<duration<Rep1, Period1>, 
      duration<Rep2, Period2> >::type
   operator+(const duration<Rep1, Period1>& Left,
      const duration<Rep2, Period2>& Right);
template<class Clock, class Duration1, class Rep2, class Period2>
   constexpr time_point<Clock, 
      typename common_type<Duration1, duration<Rep2, Period2> >::type>
   operator+(const time_point<Clock, Duration1>& Time,
      const duration<Rep2, Period2>& Dur);
template<class Rep1, class Period1, class Clock, class Duration2>
   time_point<Clock, 
      typename common_type<duration<Rep1, Period1>, Duration2>::type>
   operator+(const duration<Rep1, Period1>& Dur,
      const time_point<Clock, Duration2>& Time);

參數

  • Left
    durationtime_point 物件。

  • Right
    durationtime_point 物件。

  • Time
    time_point 物件。

  • Dur
    duration 物件。

傳回值

第一個函式傳回的時間間隔與時間間隔的總和的 Left 和 Right的 duration 物件。

第二和第三個函式傳回代表相同的時間點由 Time的時間間隔位移, Dur, time_point 的物件。

需求

**標頭:**chrono

**命名空間:**std::chrono

請參閱

其他資源

C++ 標準程式庫標頭檔