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

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

举个例子。

比如在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 为什么一部分 Go 布道师的博客不更新了?
2025-06-23 12:35:18
为什么一部分 Go 布道师的博客不更新了?...
Blog Post With Youtube Video MongoDB的缺点以及你为什么不使用MongoDB?
2025-06-23 13:10:17
MongoDB的缺点以及你为什么不使用MongoDB?...
Blog Post With Youtube Video 你怎么看待剪映收费过高问题?
2025-06-23 11:50:18
你怎么看待剪映收费过高问题?...
Blog Post With Youtube Video SQL Server 真的比不上 MySQL 吗?
2025-06-23 12:10:17
SQL Server 真的比不上 MySQL 吗?...

Leave Your Message