Udostępnij za pośrednictwem


operator+ — Operator (STL)

Dodaje obiekty czas trwania i 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);

Parametry

  • Left
    Lewy obiekt duration lub time_point.

  • Right
    Obiekt prawy duration lub time_point.

  • Time
    Obiekt time_point.

  • Dur
    Obiekt duration.

Wartość zwracana

Pierwsza funkcja zwraca duration obiekt, który ma przedział czasu, który jest równy sumie odstępów Left i Right.

Drugi i trzeci funkcje zwracają time_point obiekt, który reprezentuje punkt w czasie, który jest przesunięty od przedziału Dur, od punktu w czasie Time.

Wymagania

Nagłówek: chrono

Przestrzeń nazw: std::chrono

Zobacz też

Inne zasoby

Pliki nagłówkowe standardowej biblioteki języka C++