命名空间
变体
操作

std::literals::chrono_literals::operator""s

来自 cppreference.com
< cpp‎ | chrono
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三路比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
 
在头文件 <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 中声明,其中 literalschrono_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> 的公共成员函数) [编辑]