std::jmp_buf
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <csetjmp> 中定义
|
||
typedef /* unspecified */ jmp_buf; |
||
std::jmp_buf
类型是数组类型,适合用于存储信息的恢复调用环境。所存储的信息就足够了恢复执行的计划和正确的块调用该块。浮点状态标志,或打开的文件,或任何其他数据的状态还没有被存储在一个对象类型jmp_buf
.原文:
The
std::jmp_buf
type is an array type suitable for storing information to restore a calling environment. The stored information is sufficient to restore execution at the correct block of the program and invocation of that block. The state of floating-point status flags, or open files, or any other data is not stored in an object of type jmp_buf
.[编辑] 另请参阅
保存上下文 (函数宏) | |
跳转到指定的位置 (函数) | |
C documentation for jmp_buf
|