jmp_buf
Da cppreference.com.
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <setjmp.h> | ||
typedef/* unspecified */ jmp_buf; | ||
Il tipo
jmp_buf
è un tipo di matrice adatta per la memorizzazione delle informazioni per ripristinare un ambiente chiamante. Le informazioni memorizzate è sufficiente ripristinare esecuzione al blocco corretto del programma e la chiamata di quel blocco. Lo stato di virgola mobile flag di stato, o file aperti, o qualsiasi altro dato non viene memorizzato in un oggetto di tipo jmp_buf
.Original:
The
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
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica]Vedi anche
salva il contesto Original: saves the context The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione macro) | |
passa alla posizione specificata Original: jumps to specified location The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
C++ documentation for jmp_buf |