首页 > 后端开发 > C++ > 在C和C++中的未定义行为

在C和C++中的未定义行为

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
发布: 2023-08-28 13:09:05
转载
973 人浏览过

在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.

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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板