Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jmp_buf用于 C 编程中的哪种情况。
jmp_buf
jmp_buf是什么?我的意思是它是关键字/数据类型吗?
jmp_buf是一种保存信息以恢复调用环境的类型这是一种数组类型,能够存储稍后要恢复的调用环境的信息。参考这个
这些信息是通过调用宏来填充的setjmp,可以通过调用函数来恢复longjmp。
setjmp
longjmp
此处显示了相同的示例。