std::literals::chrono_literals::operator""s
来自 cppreference.com
在头文件 <chrono> 中定义 |
||
constexpr std::chrono::seconds operator""s( unsigned long long secs ); |
(1) | (自 C++14 起) |
constexpr std::chrono::duration</*未指定*/> operator""s( long double secs ); |
(2) | (自 C++14 起) |
形成一个表示秒的 std::chrono::duration 文字。
1) 整数文字,返回 std::chrono::seconds(secs) 的确切值。
2) 浮点文字,返回等效于 std::chrono::seconds 的浮点持续时间。
内容 |
[编辑] 参数
secs | - | 秒数 |
[编辑] 返回值
该 std::chrono::duration 文字。
[编辑] 可能的实现
constexpr std::chrono::seconds operator""s(unsigned long long s) { return std::chrono::seconds(s); } constexpr std::chrono::duration<long double> operator""s(long double s) { return std::chrono::duration<long double>(s); } |
[编辑] 注释
此运算符在命名空间 std::literals::chrono_literals 中声明,其中 literals 和 chrono_literals 都是 内联命名空间。可以通过以下方式访问此运算符:
- using namespace std::literals,
- using namespace std::chrono_literals 或
- using namespace std::literals::chrono_literals.
此外,在命名空间 std::chrono 中,指令 using namespace literals::chrono_literals; 由 标准库 提供,因此,如果程序员使用 using namespace std::chrono; 来访问 chrono 库 中的类,相应的文字运算符也会变得可见。
std::string 还定义了 operator""s,以表示类型为 std::string
的文字对象,但它是字符串文字:10s 是 10 秒,但 "10"s 是一个两位字符的字符串。
[编辑] 示例
运行此代码
#include <chrono> #include <iostream> int main() { using namespace std::chrono_literals; std::chrono::seconds halfmin = 30s; std::cout << "Half a minute is " << halfmin.count() << " seconds" " (" << halfmin << ").\n" "A minute and a second is " << (1min + 1s).count() << " seconds.\n"; std::chrono::duration moment = 0.1s; std::cout << "A moment is " << moment.count() << " seconds" " (" << moment << ").\n" "And thrice as much is " << (moment + 0.2s).count() << " seconds.\n"; }
输出
Half a minute is 30 seconds (30s). A minute and a second is 61 seconds. A moment is 0.1 seconds (0.1s). And thrice as much is 0.3 seconds.
[编辑] 另请参阅
构造新的持续时间 ( std::chrono::duration<Rep,Period> 的公共成员函数) |