标准库头文件 <debugging> (C++26)
来自 cppreference.com
此头文件是 实用程序 库的一部分。
函数 | |
(C++26) |
调用时暂停正在运行的程序 (函数) |
(C++26) |
如果 std::is_debugger_present 返回 true,则调用 std::breakpoint (函数) |
(C++26) |
检查程序是否在调试器的控制下运行 (函数) |
[编辑] 概要
// all freestanding namespace std { // debugging utility void breakpoint() noexcept; void breakpoint_if_debugging() noexcept; bool is_debugger_present() noexcept; }