读取article时遇到了一个代码,作者指出“C++标准库提供以下类型定义:”
namespace std {
namespace chrono {
typedef duration<signed int-type >= 64 bits,nano> nanoseconds;
typedef duration<signed int-type >= 55 bits,micro> microseconds;
typedef duration<signed int-type >= 45 bits,milli> milliseconds;
typedef duration<signed int-type >= 35 bits> seconds;
typedef duration<signed int-type >= 29 bits,ratio<60>> minutes;
typedef duration<signed int-type >= 23 bits,ratio<3600>> hours;
}
}
我的问题是
signed int-type >= 64 bits
是什么意思?它是signed int
减去type
吗?如果是这样,您如何解释呢? 最佳答案
这不是实际的代码;它仅以“自然”语言说明了在兼容实现中模板的type参数所需的内容。
因此,“有符号整数类型> = 64位”表示“具有至少64位的任何有符号整数类型”,但字母较少。
关于c++ - 以下typedef在chrono::duration中是什么意思?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29721729/