Udostępnij za pośrednictwem


operator- — Operator (STL)

Operator odejmowania lub negacji czas trwania i time_point obiektów.

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 Clock, class Duration1, class Duration2>
   typename common_type<Duration1, Duration2>::type
   operator-(
      const time_point<Clock, Duration1>& Left,
      const time_point<Clock, Duration2>& Right);

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 obiektu, którego długość interwału jest różnicą między odstępami czasowymi dwóch argumentów.

Druga funkcja zwraca time_point obiekt, który reprezentuje punkt w czasie, który jest przesunięty przez negację interwału czasu, która jest reprezentowany przez Dur, od punktu w czasie, który jest określony przez Time.

Trzecia funkcja zwraca duration obiekt, który reprezentuje odstęp czasu między Left i Right.

Wymagania

Nagłówek: chrono

Przestrzeń nazw: std::chrono

Zobacz też

Inne zasoby

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