|
在 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 |
F407的SDIO的硬件分流问题
与TF 卡 SDIO 通信报错:HAL_SD_ERROR_REQUEST_NOT_APPLICABLE
关于H750VB的SDMMC开启DMA读写SD卡
强制类型转换不起作用
STM32 VSCode 扩展插件问题
在 CubeIDE 中为不同 RAM 区域定义带初始值的全局变量
FreeRTOS中为什么要以这种宏定义方式访问指定地址的值
当程序里有 while (1) 死循环时,main 函数还需要 return 0 吗?
编译器在结构体中插入了并不存在的 16 位变量?
第三方库尺寸评估
微信公众号
手机版
因为z==10,直接break了这个for循环,而z的生命周期只在这个for循环内,break后就销毁了,出现什么值都是未知的
[md]为啥z=10就break了
你的z在for循环中定义的,退出以后当然要归还堆栈,编译器会将z占用的这块栈内存标记为“已释放”或“可复用”,然后别的代码可能会写入数据。好点儿的编译器编译的时候就应该抱怨,甚至报错。
if(z==10) { break; }
这句不是你的代码里的吗?为啥会不知道自己的代码里有break
[md]知道什么意思了,解决了