断言
来自 cppreference.com
定义在头文件 <cassert> 中 |
||
禁用的断言 |
||
(1) | ||
#define assert(condition) ((void)0) |
(直到 C++26) | |
#define assert(...) ((void)0) |
(自 C++26 起) | |
启用的断言 |
||
(2) | ||
#define assert(condition) /* unspecified */ |
(直到 C++26) | |
#define assert(...) /* unspecified */ |
(自 C++26 起) | |
宏 assert
的定义依赖于另一个宏,NDEBUG,该宏没有由标准库定义。
2) 否则,断言被启用。
|
(直到 C++26) |
|
(自 C++26 起) |
表达式 assert(E) 保证是一个 常量子表达式,如果:
|
(自 C++17 起) |
内容 |
[编辑] 参数
condition | - | 标量类型的表达式 |
[编辑] 返回值
(无)
[编辑] 注意事项
因为 assert(std::is_same_v<int, int>); // error: assert does not take two arguments assert((std::is_same_v<int, int>)); // OK: one argument static_assert(std::is_same_v<int, int>); // OK: not a macro std::complex<double> c; assert(c == std::complex<double>{0, 0}); // error assert((c == std::complex<double>{0, 0})); // OK |
(直到 C++26) |
没有标准化的接口来添加额外的消息到 assert
错误。一个可移植的方式是使用 逗号运算符(如果它没有被 重载),或者使用 &&
和字符串字面量。
assert(("There are five lights", 2 + 2 == 5)); assert(2 + 2 == 5 && "There are five lights");
Microsoft CRT 中的 assert
实现不符合 C++11 及其后续版本,因为其底层函数 (_wassert
) 既不接受 __func__ 也不接受等效的替换。
尽管 C23/C++26 中 assert
的更改并非正式的缺陷报告,但 C 委员会 建议 实现将更改移植到旧模式中。
[编辑] 示例
运行此代码
#include <iostream> // uncomment to disable assert() // #define NDEBUG #include <cassert> // Use (void) to silence unused warnings. #define assertm(exp, msg) assert(((void)msg, exp)) int main() { assert(2 + 2 == 4); std::cout << "Checkpoint #1\n"; assert((void("void helps to avoid 'unused value' warning"), 2 * 2 == 4)); std::cout << "Checkpoint #2\n"; assert((010 + 010 == 16) && "Yet another way to add an assert message"); std::cout << "Checkpoint #3\n"; assertm((2 + 2) % 3 == 1, "Success"); std::cout << "Checkpoint #4\n"; assertm(2 + 2 == 5, "Failed"); // assertion fails std::cout << "Execution continues past the last assert\n"; // No output }
可能的输出
Checkpoint #1 Checkpoint #2 Checkpoint #3 Checkpoint #4 main.cpp:23: int main(): Assertion `((void)"Failed", 2 + 2 == 5)' failed. Aborted
[编辑] 另请参见
static_assert 声明 (C++11) |
执行编译时断言检查 |
导致程序异常终止(不进行清理) (函数) | |
C 文档 for assert
|