首頁 > 後端開發 > C++ > 在C語言中,setjump()和longjump()函數的翻譯如下:

在C語言中,setjump()和longjump()函數的翻譯如下:

WBOY
發布: 2023-08-30 08:21:11
轉載
1703 人瀏覽過

在C語言中,setjump()和longjump()函數的翻譯如下:

在這個部分,我們將會看到C語言中的setjump和longjump是什麼。 setjump()和longjump()位於setjmp.h庫中。這兩個函數的語法如下所示。

setjump(jmp_buf buf) : uses buf to store current position and returns 0.
longjump(jmp_buf buf, i) : Go back to place pointed by buf and return i.
登入後複製

These are used in C for exception handling. The setjump() can be used as try block, and longjump() can be used as throw statement. The longjump() transfers control the pointed whichby is setjump().

Here we will see how to print a number 100 times without using recursion, loop, or macro expansion. Here we will use the setjump() and longjump() functions to do that.

##Example

#include <stdio.h>
#include <setjmp.h>
jmp_buf buf;
main() {
   int x = 1;
   setjmp(buf); //set the jump position using buf
   printf("5"); // Prints a number
   x++;
   if (x <= 100)
      longjmp(buf, 1); // Jump to the point located by setjmp
}
登入後複製

輸出

5555555555555555555555555555555555555555555555555555555555555555555555555555
555555555555555555555555
登入後複製

以上是在C語言中,setjump()和longjump()函數的翻譯如下:的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板