作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Real World Ocaml Chapter 9这是关于仿函数的:
Dependency injection
Makes the implementations of some components of a system swappable. This is particularly useful when you want to mock up parts of your system for testing and simulation purposes.
最佳答案
Dependency injection是一种软件工程技术,其目的是减少程序的两个子系统之间的相互依赖关系。这项技术的一个非常重要的细节是,它涉及的不是两个,而是三个子系统:
module type AbstractKeyValueStoreService =
sig
exception NetworkError
type t
val list : t -> string
val find : t -> string -> string option
val set : t -> string -> string -> unit
end
module KeyValueStoreServiceFailingOnSet =
struct
exception NetworkError
type t = unit
let list () = [ "a"; "b"]
let find = function
| "a" -> Some("x")
| "b" -> Some("y")
| _ -> None
let set _ _ = raise NetworkError
end
关于dependency-injection - ocaml,仿函数 : dependency injection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35110857/
我是一名优秀的程序员,十分优秀!