set_constraint_handler_s, constraint_handler_t
来自 cppreference.com
在头文件 <stdlib.h> 中定义 |
||
constraint_handler_t set_constraint_handler_s( constraint_handler_t handler ); |
(1) | (自 C11 起) |
typedef void (*constraint_handler_t)( const char* restrict msg, void* restrict ptr, |
(2) | (自 C11 起) |
2) 指向在运行时约束违反时将调用的处理程序的指针。
如果从未调用 set_constraint_handler_s
,则默认处理程序是实现定义的:它可能是 abort_handler_s、ignore_handler_s 或某些其他实现定义的处理程序。
与所有边界检查函数一样,set_constraint_handler_s
和 constraint_handler_t
仅在由实现定义 __STDC_LIB_EXT1__ 并且用户在包含 <stdlib.h> 之前将 __STDC_WANT_LIB_EXT1__ 定义为整数常量 1 时才保证可用。
内容 |
[编辑] 参数
handler | - | 指向类型为 constraint_handler_t 的函数的指针或空指针 |
msg | - | 指向描述错误的字符字符串的指针 |
ptr | - | 指向实现定义的对象的指针或空指针。实现定义对象的示例是提供检测到违反的函数名称和检测到违反的行号的对象 |
error | - | 如果调用函数恰好是返回 errno_t 的函数之一,则它将要返回的错误 |
[编辑] 返回值
指向先前安装的运行时约束处理程序的指针。(注意:此指针永远不是空指针,因为调用 set_constraint_handler_s(NULL) 会设置系统默认处理程序)。
[编辑] 示例
运行此代码
#define __STDC_WANT_LIB_EXT1__ 1 #include <string.h> #include <stdio.h> #include <stdlib.h> int main(void) { #ifdef __STDC_LIB_EXT1__ char dst[2]; set_constraint_handler_s(ignore_handler_s); int r = strcpy_s(dst, sizeof dst, "Too long!"); printf("dst = \"%s\", r = %d\n", dst, r); set_constraint_handler_s(abort_handler_s); r = strcpy_s(dst, sizeof dst, "Too long!"); printf("dst = \"%s\", r = %d\n", dst, r); #endif }
可能的输出
dst = "", r = 22 abort_handler_s was called in response to a runtime-constraint violation. The runtime-constraint violation was caused by the following expression in strcpy_s: (s1max <= (s2_len=strnlen_s(s2, s1max)) ) (in string_s.c:62) Note to end users: This program was terminated as a result of a bug present in the software. Please reach out to your software's vendor to get more help. Aborted
[编辑] 参考
- C23 标准 (ISO/IEC 9899:2024)
- K.3.6/2 constraint_handler_t (p: TBD)
- K.3.6.1.1 set_constraint_handler_s 函数 (p: TBD)
- C17 标准 (ISO/IEC 9899:2018)
- K.3.6/2 constraint_handler_t (p: TBD)
- K.3.6.1.1 set_constraint_handler_s 函数 (p: TBD)
- C11 标准 (ISO/IEC 9899:2011)
- K.3.6/2 constraint_handler_t (p: 604)
- K.3.6.1.1 set_constraint_handler_s 函数 (p: 604-605)
[编辑] 另请参阅
(C11) |
边界检查函数的中止回调 (函数) |
(C11) |
边界检查函数的忽略回调 (函数) |