MIT方案中的异常处理

发布于 2024-10-17 08:06:32 字数 107 浏览 1 评论 0原文

如何在 MIT 方案中引发和处理异常?

类似于[它不起作用]

((< val 0) (raise "-ve value") )

How do I raise and handle an exception in MIT scheme?

Something like [it doesn't work]

((< val 0) (raise "-ve value") )

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流心雨 2024-10-24 08:06:33

文档确实提供了答案,但没有代码示例,所以这里是一个:

(define (handler x)
    (display "Handling Error: ")(display x)(newline)
    (restart 1))

这里我们只是显示错误(文档称之为“条件”)
并且什么也不做。

要让此函数处理所有条件,请执行以下操作:

(bind-default-condition-handler '() handler)

或者您可以使用以下代码包装一个代码块:

(bind-condition-handler '() handler (3 4))

The documentation does provide the answer, but no code samples, so here is one:

(define (handler x)
    (display "Handling Error: ")(display x)(newline)
    (restart 1))

Here we're just displaying the error (what the documentation calls a "condition")
and doing nothing.

To have this function handle all conditions do:

(bind-default-condition-handler '() handler)

Or you can just wrap one code block with:

(bind-condition-handler '() handler (3 4))
海未深 2024-10-24 08:06:33

正如 dvingo 指出的那样,文档没有显示任何示例,因此这里是另一个使用“错误”内置特殊形式的示例(至少在 MIT 方案中):

(define (errors-if-zero x)
  (if (= x 0)
    (error "x is 0")
    x))

As dvingo pointed out, the docs do not show any example so here is another example that uses the "error" built-in special form (at least in MIT-scheme):

(define (errors-if-zero x)
  (if (= x 0)
    (error "x is 0")
    x))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文