Aracılığıyla paylaş


operator * işleci (stl)

Çarpma operatörü süre nesneler.

template<class Rep1, class Period1, class Rep2>
   constexpr duration<typename common_type<Rep1, Rep2>::type, Period1>
   operator*(const duration<Rep1, Period1>& Dur, const Rep2& Mult);
template<class Rep1, class Rep2, class Period2>
   constexpr duration<typename common_type<Rep1, Rep2>::type, Period2>
   operator*(const Rep1& Mult, const duration<Rep2, Period2>& Dur);

Parametreler

  • Dur
    duration nesnesi

  • Mult
    Bir tam sayı değeri.

Dönüş Değeri

Her işlev verir bir duration nesnesini aralığın uzunluğunu Mult uzunluğuna çarpılan Dur.

Sürece is_convertible<Rep2, common_type<Rep1, Rep2>>doğru tutan, ilk işlev aşırı yükleme çözümü içinde yer almaz. Daha fazla bilgi için sssee <type_traits>.

Sürece is_convertible<Rep1, common_type<Rep1, Rep2>>doğru tutan, ikinci işlev aşırı yükleme çözümü içinde yer almaz. Daha fazla bilgi için bkz. <type_traits>.

Gereksinimler

Başlık: chrono

Namespace: std::chrono

Ayrıca bkz.

Başvuru

<chrono>

Diğer Kaynaklar

Üstbilgi dosyaları