作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关闭。这个问题需要更多 focused .它目前不接受答案。
想改进这个问题?更新问题,使其仅关注一个问题 editing this post .
8年前关闭。
Improve this question
有人可以向我解释仿函数吗?我想简单的例子。什么时候应该使用仿函数?
最佳答案
仿函数,本质上是一种根据其他模块编写模块的方法。
一个非常经典的例子是 Map.Make
标准库中的仿函数。这个仿函数让你定义一个具有特定键类型的映射。
这是一个微不足道且相当愚蠢的示例:
module Color = struct
type t = Red | Yellow | Blue | Green | White | Black
let compare a b =
let int_of_color = function
| Red -> 0
| Yellow -> 1
| Blue -> 2
| Green -> 3
| White -> 4
| Black -> 5 in
compare (int_of_color a) (int_of_color b)
end
module ColorMap = Map.Make(Color)
ocaml
显示生成模块的签名:
module Color :
sig
type t = Red | Yellow | Blue | Green | White | Black
val compare : t -> t -> int
end
module ColorMap :
sig
type key = Color.t
type 'a t = 'a Map.Make(Color).t
val empty : 'a t
val is_empty : 'a t -> bool
val mem : key -> 'a t -> bool
val add : key -> 'a -> 'a t -> 'a t
val singleton : key -> 'a -> 'a t
val remove : key -> 'a t -> 'a t
val merge :
(key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t
val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
val iter : (key -> 'a -> unit) -> 'a t -> unit
val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val for_all : (key -> 'a -> bool) -> 'a t -> bool
val exists : (key -> 'a -> bool) -> 'a t -> bool
val filter : (key -> 'a -> bool) -> 'a t -> 'a t
val partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
val cardinal : 'a t -> int
val bindings : 'a t -> (key * 'a) list
val min_binding : 'a t -> key * 'a
val max_binding : 'a t -> key * 'a
val choose : 'a t -> key * 'a
val split : key -> 'a t -> 'a t * 'a option * 'a t
val find : key -> 'a t -> 'a
val map : ('a -> 'b) -> 'a t -> 'b t
val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t
end
module ColorMap = Map.Make(Color)
创建了一个模块,该模块实现了一个以颜色为键的 map 。现在可以调用
ColorMap.singleton Color.Red 1
并得到一张红色到数字 1 的 map 。
Map.Make
工作,因为传递的模块(
Color
)满足
Map.Make
的要求仿函数。文档说仿函数的类型是
module Make: functor (Ord : OrderedType) -> S with type key = Ord.t
.
: OrderedType
意味着输入模块(
Color
)必须与
OrderedType
一致(我相信有一个更正式的术语)模块签名。
OrderedType
保持一致输入模块必须有一个类型
t
和一个函数
compare
带签名
t -> t -> int
.换句话说,必须有一种方法来比较
t
类型的值。 .如果您查看
ocaml
报告的类型这正是
Color
补给品。
关于OCaml - 仿函数 - 如何使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20182290/
我是一名优秀的程序员,十分优秀!