Aracılığıyla paylaş


operator + işleci (stl)

Ekler süre ve time_point nesneler.

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);

Parametreler

  • Left
    The left duration or time_point object.

  • Right
    Sağ duration veya time_point nesnesi.

  • Time
    time_point nesnesi

  • Dur
    duration nesnesi

Dönüş Değeri

İlk işlevi döndüren bir duration aralıklarla toplamına eşit bir zaman aralığına sahip nesneyi Left ve Right.

İkinci ve üçüncü işlevleri döndürür bir time_point , aralığa göre displaced zaman içinde bir noktayı temsil eden nesne Dur, zaman içinde noktasından Time.

Gereksinimler

Başlık: chrono

Namespace: std::chrono

Ayrıca bkz.

Diğer Kaynaklar

Üstbilgi dosyaları