namespace std {
inline namespace literals {
inline namespace chrono_literals {
constexpr chrono::seconds
operator "" s(unsigned long long x); // (1)
constexpr chrono::duration<unspecified>
operator "" s(long double x); // (2)
}}
namespace chrono {
using namespace literals::chrono_literals;
} // namespace chrono
} // namespace std
概要
秒単位の値を表すduration
クラスのリテラル。
- (1) : 整数型の秒リテラル
- (2) : 浮動小数点型の秒リテラル
戻り値
- (1) :
chrono::seconds(x)
- (2) :
chrono::duration<unspecified>(x)
例
#include <iostream>
#include <chrono>
int main()
{
using namespace std::literals::chrono_literals;
auto seconds_i = 3s; // 整数型の3秒
auto seconds_f = 3.1s; // 浮動小数点型の3.1秒
std::cout << seconds_i.count() << std::endl;
std::cout << seconds_f.count() << std::endl;
}
14
#include <iostream>
#include <chrono>
int main()
{
using namespace std::literals::chrono_literals;
auto seconds_i = 3s; // 整数型の3秒
auto seconds_f = 3.1s; // 浮動小数点型の3.1秒
std::cout << seconds_i.count() << std::endl;
std::cout << seconds_f.count() << std::endl;
}
出力
3
3.1
バージョン
言語
- C++14
処理系
- Clang: 3.4 ✅
- GCC: 4.9.0 ✅
- ICC: ??
- Visual C++: 2015 ✅