21

我试图掌握延续的概念,我从维基百科文章中找到了几个像这样的小教学示例:

(define the-continuation #f)

(define (test)
  (let ((i 0))
    ; call/cc calls its first function argument, passing 
    ; a continuation variable representing this point in
    ; the program as the argument to that function. 
    ;
    ; In this case, the function argument assigns that
    ; continuation to the variable the-continuation. 
    ;
    (call/cc (lambda (k) (set! the-continuation k)))
    ;
    ; The next time the-continuation is called, we start here.
    (set! i (+ i 1))
    i))

我了解这个小功能的作用,但我看不到它有任何明显的应用。虽然我不希望很快在我的代码中使用延续,但我希望我知道一些合适的情况。

因此,我正在寻找更明确有用的代码示例,了解延续可以为我作为程序员提供什么。

干杯!

4

12 回答 12

16

在 Algo & Data II 中,我们一直使用这些来从(长)函数“退出”或“返回”

例如,遍历树的 BFS 算法是这样实现的:

(define (BFS graph root-discovered node-discovered edge-discovered edge-bumped . nodes)
  (define visited (make-vector (graph.order graph) #f))
  (define q (queue.new))
  (define exit ())
  (define (BFS-tree node)
    (if (node-discovered node)
      (exit node))
    (graph.map-edges
     graph
     node
     (lambda (node2)
       (cond ((not (vector-ref visited node2))
              (when (edge-discovered node node2)
                (vector-set! visited node2 #t)
                (queue.enqueue! q node2)))
             (else
              (edge-bumped node node2)))))
    (if (not (queue.empty? q))
      (BFS-tree (queue.serve! q))))

  (call-with-current-continuation
   (lambda (my-future)
     (set! exit my-future)
     (cond ((null? nodes)
            (graph.map-nodes
             graph
             (lambda (node)
               (when (not (vector-ref visited node))
                 (vector-set! visited node #t)
                 (root-discovered node)
                 (BFS-tree node)))))
           (else
            (let loop-nodes
              ((node-list (car nodes)))
              (vector-set! visited (car node-list) #t)
              (root-discovered (car node-list))
              (BFS-tree (car node-list))
              (if (not (null? (cdr node-list)))
                (loop-nodes (cdr node-list)))))))))

如您所见,当节点发现函数返回 true 时,算法将退出:

    (if (node-discovered node)
      (exit node))

该函数还将给出一个“返回值”:'node'

为什么函数退出,是因为这个语句:

(call-with-current-continuation
       (lambda (my-future)
         (set! exit my-future)

当我们使用exit时,它会回到执行前的状态,清空调用栈并返回你给它的值。

所以基本上, call-cc 用于(此处)跳出递归函数,而不是等待整个递归自行结束(在进行大量计算工作时可能会非常昂贵)

另一个使用 call-cc 做同样的小例子:

(define (connected? g node1 node2)
  (define visited (make-vector (graph.order g) #f))
  (define return ())
  (define (connected-rec x y)
    (if (eq? x y)
      (return #t))
    (vector-set! visited x #t)
    (graph.map-edges g
                     x
                     (lambda (t)
                       (if (not (vector-ref visited t))
                         (connected-rec t y)))))
  (call-with-current-continuation
   (lambda (future)
     (set! return future)
     (connected-rec node1 node2)
     (return #f))))
于 2008-08-29T11:36:06.473 回答
9

海滨:

于 2008-08-29T09:44:13.073 回答
7

@拍

海滨

是的,Seaside就是一个很好的例子。我快速浏览了它的代码,发现这条消息说明了在 Web 上以一种看似有状态的方式在组件之间传递控制。

WAComponent >> call: aComponent
    "Pass control from the receiver to aComponent. The receiver will be
    temporarily replaced with aComponent. Code can return from here later
    on by sending #answer: to aComponent."

    ^ AnswerContinuation currentDo: [ :cc |
        self show: aComponent onAnswer: cc.
        WARenderNotification raiseSignal ]

很好!

于 2008-08-29T10:18:18.517 回答
7

我构建了自己的单元测试软件。在执行测试之前,我在执行测试之前存储延续,然后在失败时,我(可选地)告诉方案解释器进入调试模式,并重新调用延续。这样我就可以很容易地遍历有问题的代码。

如果您的延续是可序列化的,您还可以在应用程序失败时存储 then,然后重新调用它们以获取有关变量值、堆栈跟踪等的详细信息。

于 2008-09-16T06:43:19.817 回答
5

一些 Web 服务器和 Web 框架使用延续来存储会话信息。为每个会话创建一个延续对象,然后由会话中的每个请求使用。

这里有一篇关于这种方法的文章。

于 2008-08-29T08:21:55.613 回答
5

我在http://www.randomhacks.net的这篇文章中遇到了amb运算符的实现,使用了延续。

以下是操作员的amb操作:

# amb will (appear to) choose values
# for x and y that prevent future
# trouble.
x = amb 1, 2, 3
y = amb 4, 5, 6

# Ooops! If x*y isn't 8, amb would
# get angry.  You wouldn't like
# amb when it's angry.
amb if x*y != 8

# Sure enough, x is 2 and y is 4.
puts x, y 

这是帖子的实现:

# A list of places we can "rewind" to
# if we encounter amb with no
# arguments.
$backtrack_points = []

# Rewind to our most recent backtrack
# point.
def backtrack
  if $backtrack_points.empty?
    raise "Can't backtrack"
  else
    $backtrack_points.pop.call
  end
end

# Recursive implementation of the
# amb operator.
def amb *choices
  # Fail if we have no arguments.
  backtrack if choices.empty?
  callcc {|cc|
    # cc contains the "current
    # continuation".  When called,
    # it will make the program
    # rewind to the end of this block.
    $backtrack_points.push cc

    # Return our first argument.
    return choices[0]
  }

  # We only get here if we backtrack
  # using the stored value of cc,
  # above.  We call amb recursively
  # with the arguments we didn't use.
  amb *choices[1...choices.length]
end

# Backtracking beyond a call to cut
# is strictly forbidden.
def cut
  $backtrack_points = []
end

我喜欢amb

于 2008-09-10T09:13:35.327 回答
3

只要程序流不是线性的,甚至不是预先确定的,就可以在“现实生活”示例中使用延续。一个熟悉的情况是Web 应用程序

于 2008-08-29T08:20:18.767 回答
3

在服务器编程(包括 Web 应用程序前端)中,Continuations 是一个很好的替代线程每个请求的方法。

在这个模型中,不是每次请求进入时都启动一个新的(繁重的)线程,而是在一个函数中开始一些工作。然后,当您准备好阻塞 I/O(即从数据库读取)时,您将一个延续传递给网络响应处理程序。当响应返回时,您执行继续。使用这种方案,您可以只用几个线程处理大量请求。

这使得控制流比使用阻塞线程更复杂,但在重负载下,它更有效(至少在今天的硬件上)。

于 2008-09-16T06:50:53.137 回答
2

amb 运算符是一个很好的例子,它允许类似 prolog 的声明式编程。

正如我们所说,我正在用 Scheme 编写一个音乐作曲软件(我是一个音乐家,几乎不了解音乐背后的理论,我只是在分析我自己的作品,看看它背后的数学是如何工作的。)

使用 amb 运算符,我只需填写旋律必须满足的约束条件,然后让 Scheme 找出结果。

由于语言哲学,可能会将延续放入 Scheme,Scheme 是一个框架,使您能够通过在 Scheme 本身中定义库来实现其他语言中发现的任何编程范式。Continuations 用于组成您自己的抽象控制结构,如“return”、“break”或启用声明式编程。Scheme 更加“泛化”,并要求程序员也应该能够指定这样的结构。

于 2010-05-18T06:47:24.493 回答
1

Google Mapplet API怎么样?有一堆函数(都以 结尾Async),您可以向其传递回调。API 函数执行异步请求,获取它的结果,然后将该结果传递给您的回调(作为“下一步要做的事情”)。对我来说,这听起来很像延续传球风格

这个例子展示了一个非常简单的案例。

map.getZoomAsync(function(zoom) {
    alert("Current zoom level is " + zoom); // this is the continuation
});  
alert("This might happen before or after you see the zoom level message");

由于这是 Javascript,因此没有尾调用优化,因此堆栈将随着每次调用而增长为延续,并且您最终会将控制线程返回给浏览器。尽管如此,我认为这是一个很好的抽象。

于 2009-01-31T20:28:08.027 回答
1

如果您必须调用异步操作并暂停执行直到获得结果,您通常会轮询结果或将其余代码放入回调中,以在异步操作完成时执行。使用延续,您不需要执行低效的轮询选项,并且您不需要在回调中将所有代码包装起来以在异步事件之后运行 - 您只需将代码的当前状态作为回调传递- 一旦异步操作完成,代码就会被有效地“唤醒”。

于 2010-05-05T00:15:24.150 回答
0

Continuations 可以用来实现异常,一个调试器。

于 2009-03-05T15:04:32.507 回答