std::numeric_limits<T>::traps
来自 cppreference.com
< cpp | types | numeric limits
static const bool traps; |
(直到 C++11) | |
static constexpr bool traps; |
(自 C++11 起) | |
的值 std::numeric_limits<T>::traps 是 true 对于所有具有至少一个值的算术类型 T
在程序启动时,如果用作算术运算符的参数,将生成一个 陷阱.
内容 |
[编辑] 标准特化
T
|
的值 std::numeric_limits<T>::traps |
/* 非特化 */ | false |
bool | false |
char | 通常 true |
signed char | 通常 true |
unsigned char | 通常 true |
wchar_t | 通常 true |
char8_t (自 C++20 起) | 通常 true |
char16_t (自 C++11 起) | 通常 true |
char32_t (自 C++11 起) | 通常 true |
short | 通常 true |
unsigned short | 通常 true |
int | 通常 true |
unsigned int | 通常 true |
long | 通常 true |
unsigned long | 通常 true |
long long (自 C++11 起) | 通常 true |
unsigned long long (自 C++11 起) | 通常 true |
float | 通常 false |
double | 通常 false |
long double | 通常 false |
[编辑] 注释
在大多数平台上,整数除以零总是会触发,并且 std::numeric_limits<T>::traps 是 true 对于所有支持值的整数类型 0. 唯一的例外是类型 bool: 即使除以 false 会因从 bool 到 int 的整数提升而触发,但触发的是值为零的 int. 零不是类型 bool 的值。
在大多数平台上,浮点异常可以在运行时打开和关闭(例如 feenableexcept() 在 Linux 上或 _controlfp 在 Windows 上),在这种情况下,的值 std::numeric_limits<T>::traps 对于浮点类型反映了程序启动时浮点捕获设施的状态,在大多数现代系统上为 false. 例外情况是 DEC Alpha 程序,如果在没有 -ieee
的情况下编译,则为 true.
[编辑] 示例
运行此代码
#include <iostream> #include <limits> int main() { std::cout << std::boolalpha << "bool: traps = " << std::numeric_limits<bool>::traps << '\n' << "char: traps = " << std::numeric_limits<char>::traps << '\n' << "char16_t: traps = " << std::numeric_limits<char16_t>::traps << '\n' << "long: traps = " << std::numeric_limits<long>::traps << '\n' << "float: traps = " << std::numeric_limits<float>::traps << '\n'; }
可能的输出
// GCC output: bool: traps = true char: traps = true char16_t: traps = true long: traps = true float: traps = false // Clang output: bool: traps = false char: traps = true char16_t: traps = true long: traps = true float: traps = false
[编辑] 缺陷报告
以下行为更改缺陷报告被追溯应用到之前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 497 | C++98 | 不清楚如果启用或禁用捕获,会返回什么 在运行时 |
返回程序启动时的启用状态 |
[编辑] 另请参见
浮点环境 | |
[static] |
标识在舍入之前检测到微小的浮点类型 (公共静态成员常量) |
[static] |
标识检测到精度损失为非规格化损失而不是不精确结果的浮点类型 (公共静态成员常量) |