namespace std {
namespace chrono {
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>& lhs,
const duration<Rep2, Period2>& rhs); // (1) C++11
}}
概要
duration
の加算を行う
戻り値
- (1)
using cd = common_type<decltype(lhs), decltype(rhs)>;
return cd(cd(lhs).count() + cd(rhs).count());
例
#include <iostream>
#include <chrono>
using namespace std::chrono;
int main()
{
seconds s = seconds{3} + seconds{2};
std::cout << s.count() << std::endl;
milliseconds ms = milliseconds{3} + seconds{2};
std::cout << ms.count() << std::endl;
}
出力
5
2003
バージョン
言語
- C++11
処理系
- Clang: 3.2 ✅
- GCC: 4.6.1 ✅
- Visual C++: 2012 ✅, 2013 ✅, 2015 ✅