gpt4 book ai didi

Racket中的动态函数调用;或从字符串中获取过程

转载 作者:太空宇宙 更新时间:2023-11-03 18:46:46 25 4
gpt4 key购买 nike

我提前为这个可能很愚蠢的问题道歉:)

假设,我有一个字符串列表,例如

(define func-names '("add" "sub" "mul"))

还有这样定义的函数

(define (add x y)
(+ x y))

(define (sub x y)
(- x y))

(define (mul x y)
(* x y))

如您所见,列表中字符串的值对应于函数的名称。我需要一种方法来遍历列表并调用对应于字符串值的函数。有点像

(define (all-ops x y)                                        
(map (lambda (name) (string->proc name x y)) func-names))

string->proc 是我要找的地方。类似于 Ruby 的 send/public_send 方法,如果您熟悉 Ruby。

我最感兴趣的是适用于 Racket 的答案。

谢谢。

编辑;而且我忘记提到可能有上百万个函数名称,所以 condmatch 在这里使用会很乏味。

最佳答案

考虑制作一个将字符串映射到函数值的哈希表。

也就是说,您可以执行以下操作:

#lang racket
(define (add x y)
(+ x y))

(define ns (variable-reference->namespace (#%variable-reference)))

(define (string->procedure s)
(define sym (string->symbol s))
(eval sym ns))

(string->procedure "add")

((string->procedure "add") 1 2)

另见 http://blog.racket-lang.org/2011/10/on-eval-in-dynamic-languages-generally.html

关于Racket中的动态函数调用;或从字符串中获取过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29460841/

25 4 0
文章推荐: css - 将 CSS 应用于
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com