다음을 통해 공유


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

매개 변수

  • Left
    The left duration or time_point object.

  • Right
    오른쪽 duration 또는 time_point 개체입니다.

  • Time
    time_point 개체

  • Dur
    duration 개체

반환 값

첫 번째 함수에서 반환 된 duration 개체 간격 길이가 긴 시간 간격으로 두 인수의 차이.

두 번째 함수에서 반환 된 time_point 점을 나타내는 시간 간격의 부정으로 변위 된 시간을 나타내는 개체 Dur, 지점으로 지정 된 시간에 Time.

세 번째 함수에서 반환 된 duration 사이의 시간 간격을 나타내는 개체 Left 및 Right.

요구 사항

헤더: chrono

네임 스페이스: std::chrono

참고 항목

기타 리소스

헤더 파일