다음을 통해 공유


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
    The left duration or time_point object.

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

  • Time
    time_point 개체

  • Dur
    duration 개체

반환 값

첫 번째 함수 반환은 duration 합 간격의 시간 간격을 갖는 개체 Left 및 Right.

두 번째와 세 번째 함수 반환은 time_point 점, 변위 간격으로 시간을 나타내는 개체 Dur, 시간 점에서 Time.

요구 사항

헤더: chrono

네임 스페이스: std::chrono

참고 항목

기타 리소스

헤더 파일