我沒那麼熟悉SML但我已經寫了下面的程序:數據構造函數在模式中使用沒有參數?
datatype 'a bin_tree = Leaf of 'a
| Node of 'a bin_tree * 'a bin_tree
fun height Leaf (x) = 0
| height Node (l1,l2) = 1 + Int.max(l1,l2)
fun is_balanced Leaf (x) = true
| is_balanced Node (l1,l2) =
if(abs(height(l1) - height(l2))<2)
then (is_balanced(l1); is_balanced(l2))
else false
val prod_tree = fold_tree
op* (fn x => x)
fun fold_tree e f Leaf (x) = f(x)
| fold_tree e f Node (l1, l2) = (e(fold_tree e f(l1)), e(fold_tree e f(l2)))
然而,當被編譯use "lab2.sml";
我得到以下錯誤:
lab2.sml:4.12-4.16 Error: data constructor Leaf used without argument in pattern
lab2.sml:5.10-5.14 Error: data constructor Node used without argument in pattern
lab2.sml:7.17-7.21 Error: data constructor Leaf used without argument in pattern
lab2.sml:8.15-8.19 Error: data constructor Node used without argument in pattern
lab2.sml:9.10-9.33 Error: operator and operand don't agree [overload conflict]
我做我的研究,但也許我只是想念一些東西。任何幫助將不勝感激。謝謝!
由於';'運算符的類型爲''a *'b - >'b',所以它對於布爾值是明確定義的。 :-P –
@SimonShine好點。我想這將是一個布爾投影算子。我應該說它不是一個有用的布爾運算符(儘管我相信你可以提出一個聰明的用例)。 –
排序,是的。當測試副作用時:'val test =(expected_to_fail(...); false)處理ExpectedExn ... => true | _ =>假' –