- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我尝试在Javascript中实现延续monad,以处理延续传递样式和异步控制流。这是我继续学习的单子(monad):
// auxiliary functions
const log = prefix => x => console.log(prefix, x);
const addk = x => y => k => setTimeout((x, y) => k(x + y), 0, x, y);
const inck = x => k => setTimeout(x => k(x + 1), 0, x);
const sqr = x => x * x;
// continuation monad
const cont = {
of: x => k => k(x),
map: ftor => f => k => ftor(x => k(f(x))),
ap: ftor => gtor => k => ftor(x => gtor(f => k(f(x)))),
chain: ftor => mf => k => ftor(x => mf(x) (k)),
callcc: f => k => f(x => () => k(x)) (k)
};
// map a normal, unary function with an asynchronous function:
cont.map(inck(9)) (sqr) (log("map"));
// chain two asynchronous CPS computations with an asynchronous binary CPS function
const comp1 = cont.map(inck(4)) (sqr);
const comp2 = cont.map(inck(9)) (sqr);
cont.chain(comp1) (x => cont.chain(comp2) (y => addk(x) (y))) (log("chain"));
cont.ap
的好处并没有向我透露自己,一切都很好。
throw
/
catch
机制。
callcc
似乎很合适,因为它提供了一个转义继续机制,用于续奏单子(monad),如
http://hackage.haskell.org/所述。
callcc
,也没有找到描述这种应用程序的合适资源。
最佳答案
简而言之
连续是一个强大的抽象。让我强调一下。延展是极大的强大抽象。为什么延续如此强大?这是因为延续只是函数[1]和“functions have a dangerous property of being invokable.”,稍后再介绍。
那么,如果延续只是一个函数,那为什么如此特别呢?
是的,延续只是一个功能。但是,使延续如此特别的是它所代表的含义。延续表示“计算的其余部分”(也称为计算上下文)。例如,考虑以下Scheme表达式:
(add1 (* 3 x))
; |_____|
; |
; computation
(add1 [])
; |_______|
; |
; context
(* 3 x)
具有上下文
(add1 [])
,其中
[]
表示一个孔。可以将计算结果塞入孔中。对于某些
(add1 [result])
,它被写为
result
。延续只是上下文的表示。例如,函数
(lambda (result) (add1 result))
表示上下文
(add1 [])
。
(* 3 x)
也可以表示为一个函数。它表示为函数
(lambda (context) (context (* 3 x)))
,其中
context
是表示计算上下文的延续。在其中应注意,Haskell中的
Cont
类型表示计算本身,而不是其上下文。
(* 3 x)
:
(lambda (context)
(context (* 3 x)))
context
怎么办?我们可以使用它来使结果加倍,如下所示:
(lambda (context)
(+
(context (* 3 x))
(context (* 3 x))))
context
是
add1
,那么这将产生答案
(* 2 (add1 (* 3 x)))
。
context
怎么办?我们可以将评估短路:
(lambda (context)
(* 3 x))
call/cc
所做的。它通过忽略上下文并仅返回答案来缩短评估。例如,考虑:
(call/cc (lambda (short-circuit)
(add1 (short-circuit (* 3 x)))))
(* 3 x)
具有上下文
add1
。但是,我们通过将
call/cc
(即
short-circuit
)的上下文应用于计算结果来简化计算。因此,我们忽略了原始上下文(即
add1
)并返回了答案。
call/cc
如何实现?
callCC
的定义:
callCC :: ((a -> Cont r b) -> Cont r a) -> Cont r a
-- |___________________________|
-- |
-- f
callCC f = Cont $ \k -> runCont (f (\a -> Cont $ \_ -> k a)) k
-- __|___ |______________________|
-- | | |
-- (a -> r) short-circuit
k
是当前的延续(即整个表达式的延续)。函数
f
是
callCC
的唯一输入。它返回一个
Cont r a
,代表要执行的整个计算。我们将其应用于
k
以获得计算结果。
short-circuit
。此函数获取结果并返回忽略其上下文的计算,并将当前的延续
k
应用于结果,从而使评估短路。
callCC
在Haskell中的工作方式。让我们使用新发现的知识在JavaScript中实现延续和
callCC
:
var Cont = defclass({
constructor: function (runCont) {
this.runCont = runCont;
},
map: function (f) {
return new Cont(k => this.runCont(x => k(f(x))));
},
apply: function (g) {
return new Cont(k => this.runCont(f => g.runCont(x => k(f(x)))));
},
bind: function (f) {
return new Cont(k => this.runCont(x => f(x).runCont(k)));
}
});
Cont.of = x => new Cont(k => k(x));
var callCC = f => new Cont(k => f(x => new Cont(_ => k(x))).runCont(k));
var log = prefix => x => console.log(prefix, x);
var add1 = x => Cont.of(x + 1);
callCC(short_circuit => short_circuit(15).bind(add1)).runCont(log("short"));
callCC(short_circuit => Cont.of(15).bind(add1)).runCont(log("no short"));
function defclass(prototype) {
var constructor = prototype.constructor;
constructor.prototype = prototype;
return constructor;
}
callCC
可用于实现
goto
。
callCC
的强大功能使您可以创建任意控制流结构,例如
throw
,协程和
goto
,如下所示:
var Cont = defclass({
constructor: function (runCont) {
this.runCont = runCont;
},
map: function (f) {
return new Cont(k => this.runCont(x => k(f(x))));
},
apply: function (g) {
return new Cont(k => this.runCont(f => g.runCont(x => k(f(x)))));
},
bind: function (f) {
return new Cont(k => this.runCont(x => f(x).runCont(k)));
}
});
Cont.of = x => new Cont(k => k(x));
var callCC = f => new Cont(k => f(x => new Cont(_ => k(x))).runCont(k));
var log = (x, ms) => new Cont(k => setTimeout(_ => k(console.log(x)), ms));
var omega = x => x(x); // This is a very dangerous function. Run `omega(omega)`.
callCC(omega).bind(cc => log("loop", 1000).bind(_ => cc(cc))).runCont(x => x);
function defclass(prototype) {
var constructor = prototype.constructor;
constructor.prototype = prototype;
return constructor;
}
forever:
delay(1000);
print("loop");
goto forever;
关于javascript - 如何应用callcc,以便它提供转义继续机制以与继续monad一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39790895/
我正在我的应用程序后台下载视频。如果用户在下载过程中重启了应用/设备,有什么方法可以在他们下次启动应用时从他们中断的地方继续下载? 最佳答案 这主要取决于文件服务器的配置(HTTP、FTP 等)。 现
我正在试验 WPF 动画,但有点卡住了。这是我需要做的: 鼠标悬停: 淡入(2 秒内从 0% 到 100% 不透明度) MouseOut: 暂停 2 秒 淡出(2 秒内从 100% 到 0% 不透明度
我的问题是这个线程的延续: Ant: copy the same fileset to multiple places 我是映射器的新手。有人(carej?)可以分享一个使用映射器来做到这一点的例子吗
继续previous question我希望能够显示一些事件指示器即使主线程被阻塞。(基于this article)。 基于所附代码的问题: 使用 Synchronize(PaintTargetWin
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度的了解。包括尝试的解决方案、为什么它们不起作用以及预期结果
我有一个场景,其中有一个线程在等待和执行任务之间循环。但是,我想中断线程的等待(如果愿意,可以跳过其余的等待)并继续执行任务。 有人知道如何做到这一点吗? 最佳答案 我认为你需要的是实现 wait()
这是我的代码架构: while (..) { for (...; ...;...) for(...;...;...) if ( )
import java.util.Scanner; public class InteractiveRectangle { public static void main(String[] args)
如何将 continue 放入具有函数的列表理解中? 下面的示例代码... import pandas as pd l = list(pd.Series([1,3,5,0,6,8])) def inv
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 6 年前。 Improve this qu
我正在用 python 开发一个程序,遇到了一个我不知道如何解决的问题。我的意图是使用 with 语句,避免使用 try/except。 到目前为止,我的想法是能够使用 continue 语句,就像在
我对下一段代码的执行感到困惑: label: for (int i = 0; i < 100; i++) { if (i % 2 == 0) c
这很好用: #include int main(){ volatile int abort_counter = 0; volatile int i = 0; while (i
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
如果不满足某些条件,我会尝试跳到循环的下一次迭代。问题是循环仍在继续。 我哪里出错了? 根据第一条评论更新了代码示例。 foreach ($this->routes as $route =>
如果不满足某些条件,我会尝试跳到循环的下一次迭代。问题是循环仍在继续。 我哪里出错了? 根据第一条评论更新了代码示例。 foreach ($this->routes as $route =>
Android项目中的一个需求:通过线程读取文件内容,并且可以控制线程的开始、暂停、继续,来控制读文件。在此记录下。 直接在主线程中,通过wait、notify、notifyAll去控制读文件的线
link text 我得到了引用计数的概念 所以当我执行“del astrd”时,引用计数降为零并且 astrd 被 gc 收集? 这是示例代码。这些代码是我在昨天的问题之后开发的:link text
我想首先检查我的 Range 是否有 #NA 错误,然后在退出宏之前显示包含错误的单元格地址。这是我到目前为止所做的。 现在,如果出现错误,我想显示 MsgBox警告用户错误并停止程序的其余部分执行,
while( (c = fgetc(stdin)) != EOF ){ count++; if (count == lineLen - 1){ moreChars =
我是一名优秀的程序员,十分优秀!