如果用戶沒有輸入值,我想顯示一條錯誤消息,所以我使用了這個。如果你可以幫助我在用戶沒有輸入一個很好的值時顯示我的錯誤。 while (!choice.equalsIgnoreCase("y") && !choice.equalsIgnoreCase("n"))
{ //start of while
if (choice.isEmpty()) {
System.
比方說,我有一個N叉樹型 type tree = Node of (char*tree) list ref;;
,這對應於空樹 let empty_tree()= Node(ref[]);;
我想寫一個函數,只有當我的樹是空的或不看,如 let checkIsEmpty t = match t with empty_tree-> print_string "tree is empty";;