R6RS方案中如何抛出和处理异常
R6RS 方案中抛出和捕获异常的标准方法是什么?我正在寻找适用于实现 R6RS 的任何版本的Scheme(不仅仅是PLT)的语法。
R6RS 保护语法 看起来像它可能符合要求,但有人可以向我展示如何实际使用它的示例吗?
What is the standard way to throw and catch exceptions in R6RS Scheme? I'm looking for syntax that works in any version of Scheme (not just PLT) that implements R6RS.
R6RS guard syntax looks like it might fit the bill, but can somebody show me an example of how to actually use it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
guard
的语义是:有一个辅助的
else
子句,我们在这里不使用。以下示例模拟典型文件 IO 操作可能引发的异常。我们安装一个guard
来处理异常:测试运行:
R6RS 第 7 章。
The semantics of
guard
is:There is an auxiliary
else
clause that we do not use here. The following sample simulates exceptions that could be raised by typical file IO operations. We install aguard
to handle the exceptions:Test run:
There is a detailed description of exception handling with example code in Chapter 7 of R6RS.