c#递归函数并非所有代码路径都返回一个值

时间:2012-12-15 16:16:28

标签: c# function recursion

我试图制作递归函数,但是我得到了这个错误:并非所有代码路径都返回值我知道为什么我会收到此错误,因为if没有返回,但我不知道不希望它返回一些东西......如何绕过这个错误? (它应该只是警告)

    private double calculate(double money, int months)
    {
        months--;
        if (months != 0)
            calculate(profit * 0.3, months);
        else
            return profit;
    }

编辑:我在用户点击按钮时将其称为

    private void bCalculate_Click(object sender, EventArgs e)
    {
        profit = double.Parse(tbMoney.Text);
        months = int.Parse(tbMonth.Text);
        tbPpofit.Text = calculate(profit,months+1).ToString();
    }

如果我写回报就像你说的那样不会给出我需要的结果

2 个答案:

答案 0 :(得分:11)

只需在递归分支中添加一个返回:

  if (months != 0)
        return calculate(profit * 0.3, months);
  ...

答案 1 :(得分:5)

在代码中添加return值以进行递归:

  if (months != 0)
        return calculate(profit * 0.3, months);