Heim >Backend-Entwicklung >C++ >Undefiniertes Verhalten in C und C++
Hier sehen wir uns etwas C- und C++-Code an und versuchen, die Ergebnisse zu erraten. Diese Codes erzeugen einige Laufzeitfehler.
1. Der Division-durch-Null-Fehler ist undefiniert.
#include <iostream> using namespace std; int main() { int x = 10, y = 0; int z = x / y; cout << "Done" << endl; }
Runtime error for divide by zero operation
2. Versucht, eine nicht initialisierte Variable zu verwenden.
#include <iostream> using namespace std; int main() { bool x; if(x == true) cout << "true value"; else cout << "false value"; }
false value (This may differ in different compilers)
#include <iostream> using namespace std; int main() { int *ptr = NULL; cout << "The pointer value is: " << *ptr; }
Runtime error for accessing null pointer values
#include <iostream> using namespace std; int main() { int array[10]; for(int i = 0; i<=10; i++) { cout << array[i] << endl; } }
Runtime error for accessing item out of bound. Some compiler may return some arbitrary value, not return any error
#include <iostream> using namespace std; int main() { int x = INT_MAX; cout << "x + 1: " << x + 1; }
x + 1: -2147483648 circulate to the minimum number of signed int
Das obige ist der detaillierte Inhalt vonUndefiniertes Verhalten in C und C++. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!