根据表达式文本返回函数的函数

发布于 2024-11-26 02:15:04 字数 447 浏览 0 评论 0原文

我想创建一个函数(称之为 fcreate),当给定一个字符串时,它返回一个 Lua 函数。例如,我应该能够说

f=fcreate("math.sin(x)+math.cos(x)")
print(f(2)) -- evaluates sin(2)+cos(2)
print(f(3)) -- evaluates sin(3)+cos(3)

To make things simple, the string will just be a function of x.

我已尝试以下操作,但它不起作用:

function fcreate(fs)
  assert(loadstring("local f=function (x) return ".." end"))
  return f
end

由于某种原因,返回的 f 为零。

I would like to create a function (call it fcreate) that when given a string, returns a Lua function. For example, I should be able to say

f=fcreate("math.sin(x)+math.cos(x)")
print(f(2)) -- evaluates sin(2)+cos(2)
print(f(3)) -- evaluates sin(3)+cos(3)

To make things easy, the string will just be a function of x.

I have tried the following but it did not work:

function fcreate(fs)
  assert(loadstring("local f=function (x) return ".." end"))
  return f
end

For some reason the f which is returned is nil.

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

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

发布评论

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

评论(3

勿忘初心 2024-12-03 02:15:04

试试这个。

function fcreate(fs)
  local f = assert(loadstring("return " .. fs))
  return f
end

如果有参数,可以使用...表示法来获取。但如果你绝对需要命名参数:

function fcreate(fs)
  local f = assert(loadstring("local x = ...; return " .. fs))
  return f
end

Try this.

function fcreate(fs)
  local f = assert(loadstring("return " .. fs))
  return f
end

If there are parameters, you can use ... notation to get them. But if you absolutely need named parameters:

function fcreate(fs)
  local f = assert(loadstring("local x = ...; return " .. fs))
  return f
end
酒儿 2024-12-03 02:15:04

你几乎是对的。试试这个

function fcreate(fs)
  return assert(loadstring("return function (x) return " .. fs.." end"))()
end

You almost had it right. Try this

function fcreate(fs)
  return assert(loadstring("return function (x) return " .. fs.." end"))()
end
时光无声 2024-12-03 02:15:04

CoronaSDK 是沙盒的,因此 loadstringdostringloadfiledofile 均不可用。

(这意味着没有办法在运行时从字符串转换为 lua 代码)

CoronaSDK is sand-boxed, so loadstring, dostring, loadfile, and dofile are all unavailable.

(this means that there isn't a way to go from a string to lua code at runtime)

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