首頁 > 後端開發 > C++ > 在C和C++中的未定義行為

在C和C++中的未定義行為

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
發布: 2023-08-28 13:09:05
轉載
971 人瀏覽過

在C和C++中的未定義行為

在這裡,我們將看到一些C和C 程式碼,並嘗試猜測結果。這些程式碼將產生一些運行時錯誤。

1. 除以零的錯誤是未定義的。

範例程式碼

#include <iostream>
using namespace std;
int main() {
   int x = 10, y = 0;
   int z = x / y;
   cout << "Done" << endl;
}
登入後複製

Output

Runtime error for divide by zero operation
登入後複製

2. Trying to use uninitialized variable.

Example Code

#include <iostream>
using namespace std;
int main() {
   bool x;
   if(x == true)
      cout << "true value";
   else
      cout << "false value";
}
登入後複製

Output

false value (This may differ in different compilers)
登入後複製

3. Trying to access null pointer values.

Example Code

#include <iostream>
using namespace std;
int main() {
   int *ptr = NULL;
   cout << "The pointer value is: " << *ptr;
}
登入後複製

Output

Runtime error for accessing null pointer values
登入後複製

4. Trying to access null pointer values.

#4. Trying to access null pointer values.

##4. #Example Code

#include <iostream>
using namespace std;
int main() {
   int array[10];
   for(int i = 0; i<=10; i++) {
      cout << array[i] << endl;
   }
}
登入後複製

Output

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;
}
登入後複製

Output

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] = &#39;x&#39;;
   cout << str;
}
登入後複製

Output###
Runtime error because we are trying to change the value of some constant variables.
登入後複製
####

以上是在C和C++中的未定義行為的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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