2

我有以下代码,我想返回一个布尔值或一个元组。(函数isvariabledont_care都返回布尔值,仅供参考)

let match_element (a, b) =
if a = b then true
else if (dont_care a) || (dont_care b) then true
else if (isvariable a) then (a, b)
else if (isvariable b) then (b, a)
else false;;

目前,它引发以下错误:

有没有办法解决这个问题?

This expression has type 'a * 'b
but an expression was expected of type bool

(此功能基于 Python 程序的指令,我不确定在 OCaml 中是否可行。)

4

1 回答 1

12

粗略地说,您想要的是临时多态性或重载。在 OCaml 中是不可能的,更重要的是,我们不想在 OCaml 中拥有它。

如果你想要一个返回多种类型的函数,那么你必须定义一个新的“sum”类型来表达这些类型:在这里,你想要返回一个布尔值或元组,所以一个新类型意味着“一个布尔值”或元组”。在 OCaml 中,我们定义了这样一个类型:

type ('a, 'b) t = Bool of bool
                | Tuple of 'a * 'b

使用这种新的 sum 类型,您的代码应如下所示:

type ('a, 'b) t = 
  | Bool of bool
  | Tuple of 'a * 'b

let match_element (a, b) =
  if a = b then Bool true
  else if dont_care a || dont_care b then Bool true
  else if is_variable a then Tuple (a, b)
  else if is_variable b then Tuple (b, a)
  else Bool false;;

此处带有两个参数('a 和 'b)的类型 t 对于您的目的来说可能过于笼统,但我无法从上下文中猜出您想要做什么。可能有更好的类型定义适合您的意图,例如:

type element = ... (* Not clear what it is from the context *)

type t =
  | I_do_not_care        (* Bool true in the above definition *)
  | I_do_care_something  (* Bool false in the above definition *)
  | Variable_and_something of element * element  (* was Tuple *)
于 2013-02-08T02:41:51.020 回答