找回密码
 注册会员
更新自动建库工具PCB Footprint Expert 2024.04 Pro / Library Expert 破解版

for循环中用if的奇怪现象

[复制链接]
admin 发表于 2012-9-2 11:07:01 | 显示全部楼层 |阅读模式

本文包含原理图、PCB、源代码、封装库、中英文PDF等资源

您需要 登录 才可以下载或查看,没有账号?注册会员

×
硬件STC12C2052,编译器WAVE。程序中的一段如下:
for(i=0;i<1;i++)
{

IDS=ID[i];

numof1=0;
for(j=0;j<4;j++)
{
numof1=numof1+(IDS&0x80)>>7;
IDS=IDS<<1;
}
numof1=numof1+(yan1&0x10)>>4;

//numof1=1;

if((numof1==1)||numof1==3)||numof1==1))goto star;
}
以上程序运行时,哪怕在前面将numof1=1写进去也不会跳转。如果去掉外面for循环则可以跳转。
如果将if改为switch也能跳转。

for(i=0;i<1;i++)
{

IDS=ID[i];

numof1=0;
for(j=0;j<4;j++)
{
numof1=numof1+(IDS&0x80)>>7;
IDS=IDS<<1;
}
numof1=numof1+(yan1&0x10)>>4;

//numof1=1;

switch (numof1)
{
case 1,3,5 :goto star;
}
}
改成switch,跳转正常。各位有没碰到这种情况,欢迎做有水平的回答。不要告诉我内存不够。
*滑块验证:
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

QQ|手机版|MCU资讯论坛 ( 京ICP备18035221号-2 )|网站地图

GMT+8, 2024-11-24 20:27 , Processed in 0.049707 second(s), 10 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表