1

为什么这个 while 循环不适用于元循环解释器。我如何在我的交互窗口中运行它?

((while? exp) (eval (while->combination  exp) env)) 

(define (while-condition expr) (cadr expr))
 (define (while-body expr) (caddr expr))

 (define (while->combination exp)
         (sequence->exp
                 (list (list 'define  
                                 (list 'while-iter) 
                                         (make-if (while-condition exp)  
                                                          (sequence->exp (list (while-body exp)  
                                                                                        (list 'while-iter))) 
                                                          'true))
                           (list 'while-iter))))
4

1 回答 1

1

为了回答这个问题,我使用了SICP 4.1.1 中描述的元循环评估器,因为您的代码缺少一些程序才能运行。

因此,如果您有类似的测试表格(while (call-something) (do-something-1) (do-something-2))),可以将其引用while->combination如下:

;; NB: notice I quote the code
(while->combination '(while (call-something) 
                       (do-something-1)
                       (do-something-2))) 

如果您正在使用 DrRacket,您可以将其放在定义窗口的末尾,然后Debug >|轻松地点击并单步执行您的代码。

我从运行它得到的输出是:

(begin 
  (define (while-iter) 
    (if (call-something) 
        (begin (do something-1) 
               (while-iter))
        true)) 
  (while-iter))
于 2014-03-24T18:55:15.443 回答