如何在方案中打印符号的定义而不求值?

发布于 2024-11-15 04:22:24 字数 27 浏览 2 评论 0原文

如果我想打印符号的函数定义,我该怎么办?

If I want to print function definition for a symbol, what should I do?

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

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

发布评论

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

评论(1

枕头说它不想醒 2024-11-22 04:22:24

如果我理解正确,您需要一个函数 print-function ,这样之后

(define (foo x) (cons x x))

它的行为就像

> (print-function foo)
(lambda (x) (cons x x))

标准方案没有这样的设施。原因是Scheme 实现可能并且通常会将函数编译为不同的表示形式(字节码、机器代码)。

有些方案可能会保留函数定义;检查您的实施手册。

If I understand correctly, you want a function print-function such that after

(define (foo x) (cons x x))

it will behave as

> (print-function foo)
(lambda (x) (cons x x))

Standard Scheme doesn't have a facility for that. The reason is Scheme implementations may, and generally do, compile functions into a different representation (bytecode, machine code).

Some Schemes may keep the function definition around; check your implementation's manual.

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