今日头条
使用keill编写了一个程序 如下:
uint8_t Count_Init(uint16_t sing)
{
if(sing>mode72)
{
return 72;
}else if(sing>mode60)
{
return 60;
}else if(sing>mode48)
{
return 48;
}
}
这样 在编译的时候会出现这样的警告
:count.c(51): warning: #940-D: missing return statement at end of non-void function "Count_Init"
这个警告的解决办法就是 在if后面增添一个else return xx;这样的一句代码。
全部0条评论
快来发表一下你的评论吧 !