assert
Aus cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| definiert in Header <assert.h>
|
||
#ifdef NDEBUG #define assert(condition) ((void)0) #else #define assert(condition) /*implementation defined*/ #endif |
||
Die Definition des Makros
assert hängt von einem anderen Makro, NDEBUG, die nicht von der Standard-Bibliothek definiert ist .Original:
The definition of the macro
assert depends on another macro, NDEBUG, which is not defined by the standard library.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.
Wenn
NDEBUG als Makronamen an der Stelle im Quellcode, wo <assert.h> enthalten ist definiert wird, dann assert nichts .Original:
If
NDEBUG is defined as a macro name at the point in the source code where <assert.h> is included, then assert does nothing.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.
Wenn
NDEBUG nicht definiert ist, dann assert prüft, ob ihr Argument (das muss skalar Art haben) vergleicht gleich Null. Ist dies der Fall, assert ausgibt Umsetzung Diagnose-Informationen über die Standard-Fehlerausgabe und ruft abort(). Die Diagnoseinformationen ist erforderlich, um den Text der expression sowie die Werte der Standard-Makros __FILE__, __LINE__, und die Standard-Variable __func__ gehören .Original:
If
NDEBUG is not defined, then assert checks if its argument (which must have scalar type) compares equal to zero. If it does, assert outputs implementation-specific diagnostic information on the standard error output and calls abort(). The diagnostic information is required to include the text of expression, as well as the values of the standard macros __FILE__, __LINE__, and the standard variable __func__.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.
Parameter
| condition | - | Ausdruck der skalaren Typ
Original: expression of scalar type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
(None)
Original:
(none)
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.
Beispiel
#include <stdio.h>
#include <assert.h>
int main (int argc, char **argv)
{
// Test if 0 is really equivalent to 0
assert (0 == 0);
// Test if 1 is different than 0...
assert (1 == 0);
return 0;
}
Output:
example: ex.c:10: int main(int, char**): Assertion `1 == 0' failed.
Aborted
Siehe auch
verursacht abnormale Beendigung des Programms (ohne Reinigung) Original: causes abnormal program termination (without cleaning up) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |