在奥兹国缺少其他条款

时间:2014-10-02 17:50:07

标签: exception if-statement clause oz

Oz Compiler发布例外情况" Missing Else Clause"当我尝试编译这段代码时,有人可以告诉我为什么吗?这是我的代码:

declare
fun {Numero x y}
   local NumeroAux in
      fun {NumeroAux x y Acc}
     if {And (x == 0) (y == 0)} then Acc
     else
        if y == 0 then {NumeroAux 0 x-1 Acc+1} 
        else
           {NumeroAux x+1 y-1 Acc+1}
        end
     end
      end
      {NumeroAux x y 0}
   end
end

{Browse {Numero 0 0}}

在我看来,此代码中没有缺少else子句!我的功能总会返回一些东西。

1 个答案:

答案 0 :(得分:2)

在Oz语言中,所有变量都需要大写。小写是原子的。 因此,如果您尝试使用大写字母运行代码:

    declare
    fun {Numero X Y}
    local NumeroAux in
      fun {NumeroAux X Y Acc}
     if {And (X == 0) (Y == 0)} then Acc
     else
        if Y == 0 then {NumeroAux 0 X-1 Acc+1} 
        else
           {NumeroAux X+1 Y-1 Acc+1}
        end
     end
      end
      {NumeroAux Y X 0}
   end
end

{Browse {Numero 0 0}}

这将按预期浏览0。