我在阅读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
吗?如果是这样,你怎么解释它?
答案 0 :(得分:15)
这不是实际的代码;它仅说明(以“自然”语言)兼容实现中模板的类型参数所需的内容。
因此“signed int-type&gt; = 64位”表示“任何带有至少64位的有符号整数类型”,但字母较少。