非计算机专业,好奇为什么会出现“程序依赖bug运行”的情况?

Views :
Update time : 2025-06-24 16:25:19

举个例子。

比如在c/c++语言里,这个写法是非法的,bug: int* fun(int nums[], size_t len) { int sth; char c1; float other; char c2; int tmpNum[len]; char str[len]; //do sth return tmpNum; }其中的tmpNum叫局部变量,它分配在栈上;当fun执行了return时,这块内存就被自动收回了,就不能再读写了。

但如果你不懂,你就是把tmpNum返回了;那么下游的使用者还真就能读到里面的值——内存是被收回了,但数据仍然在内存条上…。

非计算机专业,好奇为什么会出现“程序依赖bug运行”的情况?
Related News
Read More >>
Blog Post With Youtube Video vmware 虚拟机如何安装?
2025-06-26 19:25:16
vmware 虚拟机如何安装?...
Blog Post With Youtube Video 什么样的人算是中了基因***?
2025-06-26 18:00:17
什么样的人算是中了基因***?...
Blog Post With Youtube Video 写业务的话,go是不是垃圾?
2025-06-26 19:10:16
写业务的话,go是不是垃圾?...
Blog Post With Youtube Video 有哪些好用不火的软件?
2025-06-26 19:00:16
有哪些好用不火的软件?...

Leave Your Message