ここでは、C と C のコードをいくつか見て、結果を推測してみます。これらのコードはいくつかの実行時エラーを生成します。
1. ゼロ除算エラーは未定義です。
#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.初期化されていない変数を使用しようとしています。
#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)
3. Null ポインター値にアクセスしようとしています。
#include <iostream> using namespace std; int main() { int *ptr = NULL; cout << "The pointer value is: " << *ptr; }
Runtime error for accessing null pointer values
4. Null ポインター値にアクセスしようとしています。
#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
5. 符号付き整数の制限を超えました。
#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
6. 文字列リテラルの一部の文字を変更してみてください。
#include <iostream> using namespace std; int main() { char *str = "Hello World"; str[2] = 'x'; cout << str; }
Runtime error because we are trying to change the value of some constant variables.
以上がC および C++ での未定義の動作の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。