|
在 Visual Studio 里写 C++ 程序,编译通过后再移植到 STM32 CubeIDE。我写了一个简单的 for 循环, for(int z=5;z<15;z++) { cout<<"when z is equal to 10, the loop will be broken out\n"; if(z==10) { break; } cout<<z<<endl; } cout<<z<<endl; 运行后变量 z 在循环体外输出了奇怪的值:1971940899。 终端输出如下: when z is equal to 10, the loop will be broken out 5 when z is equal to 10, the loop will be broken out 6 when z is equal to 10, the loop will be broken out 7 when z is equal to 10, the loop will be broken out 8 when z is equal to 10, the loop will be broken out 9 when z is equal to 10, the loop will be broken out 1971940899 |
rand () 函数的问题不能产生真正的随机数
printf 使用 % llu 输出错误
printf运行报错
STM32F407 音频输入输出时 IFFT 无法正常工作
STM32F303K8搭配 FreeRTOS 时出现 RAM 溢出
MMT 在工具菜单中不显示
将 IAR 的 __no_init 指令移植到 GCC 编译器
关于H750VB的SDMMC开启DMA读写SD卡
F407的SDIO的硬件分流问题
与TF 卡 SDIO 通信报错:HAL_SD_ERROR_REQUEST_NOT_APPLICABLE
微信公众号
手机版
因为z==10,直接break了这个for循环,而z的生命周期只在这个for循环内,break后就销毁了,出现什么值都是未知的
[md]为啥z=10就break了
你的z在for循环中定义的,退出以后当然要归还堆栈,编译器会将z占用的这块栈内存标记为“已释放”或“可复用”,然后别的代码可能会写入数据。好点儿的编译器编译的时候就应该抱怨,甚至报错。
if(z==10) { break; }
这句不是你的代码里的吗?为啥会不知道自己的代码里有break
[md]知道什么意思了,解决了