返回一个在Scheme中是可变对象的表达式?

发布于 2024-10-17 23:05:45 字数 258 浏览 3 评论 0原文

您好,我正在尝试编写一个函数,该函数将返回一个可变且可用作过程的表达式。

例如:

(fooeq 1 2) 将返回 (eq? 1 2)

((fooeq 1 2)) 将返回 #f

有没有办法编写一个可以转换为过程的符号表达式?

编辑:我明白了,感谢您的回复。如果其他人想知道这是 (eval p)。

Hi I am trying to write a function that will return an expression that is mutable and can be used as a procedure.

For example:

(fooeq 1 2) would return (eq? 1 2)

and

((fooeq 1 2)) would return #f

Is there a way to write an expression that is a symbol that can be converted into a procedure?

EDIT: I got it, thanks for the responses. In case anyone else was wondering it's the (eval p).

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

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

发布评论

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

评论(1

莳間冲淡了誓言ζ 2024-10-24 23:05:45

我猜您希望 fooeq 计算为一个函数:

> (define (fooeq a b)
    (lambda () (eq? a b)))

> ((fooeq 1 2))
#f
> ((fooeq 1 1))
#t
> 

将一个或多个函数作为输入或输出函数的函数称为 高阶函数

I guess you want fooeq to evaluate to a function:

> (define (fooeq a b)
    (lambda () (eq? a b)))

> ((fooeq 1 2))
#f
> ((fooeq 1 1))
#t
> 

A function that takes one or more functions as input or outputs a function is known as a higher-order function.

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