本文介绍了应用符号作为程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我有一个简单的符号:
Suppose I have a simple symbol:
> '+
+
有什么方法可以将该符号作为程序应用:
Is there any way I can apply that symbol as a procedure:
> ((do-something-with '+) 1 2)
3
所以 '+
被评估为过程 +
?
So that '+
is evaluated to the procedure +
?
推荐答案
我不是 100% 确定,但会:
I'm not 100% sure, but would:
((eval '+) 1 2)
工作?我不确定您是否需要指定环境,或者即使它有效 - 我是一个 Scheme 菜鸟.:)
work? I'm not sure if you need to specify the environment, or even if that works - I'm a Scheme noob. :)
这篇关于应用符号作为程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!