2

我有以下代码:

int cons_col()
{
for(int col =0; rx_state_== MAC_IDLE; col++)
return col;
}

它就像一个计数器,当满足条件 rx_state_ == MAC_IDLE 时应该返回一个整数;编译时,我收到警告:控制到达非无效函数的结尾。

如果在上述函数的末尾添加以下内容,这个问题会消失吗:

if (coll == 0)
return 0;

谢谢

4

1 回答 1

5

该代码对此进行评估。

int cons_col()
{
    for( int col = 0; rx_state_ == MAC_IDLE; col++ )
    {
       return col;
       // "return" prevents this loop from finishing its first pass,
       // so "col++" (above) is NEVER called. 
    }
    // What happens here?  What int gets returned?
}

请注意,此功能将始终立即完成。

它这样做:

  • 将整数设置col0
  • 检查一次if rx_state_is MAC_IDLE
  • 如果是,则返回0
  • 如果不是,它会到达// What happens here?,然后到达非 void 函数的末尾而不返回任何内容。

根据您的描述,您可能想要这样的东西。

int cons_col()
{
    int col = 0;
    for( ; rx_state_ != MAC_IDLE; col++ )
    {
       // You may want some type of sleep() function here.
       // Counting as fast as possible will keep a CPU very busy
    }
    return col;
}
于 2013-04-25T05:41:41.520 回答