我正在尝试开发一个函数,该函数对具有相同键的两个值执行数学运算:
property = {a=120, b=50, c=85}
operator = {has = {a, b}, coefficient = {a = 0.45}}
function Result(x) return operator.has.x * operator.coefficient.x end
print (Result(a))
error: attempt to perform arithmetic on field 'x' (a nil value)
问题是该函数在字面上尝试数学 “operator.has.x”而不是“operator.has.a”。
我能够调用一个函数(x)返回x.something结束,但如果我尝试函数(x)something.x我会收到一个错误。我需要提高我对Lua中函数的理解,但我在手册中找不到这个。
答案 0 :(得分:6)
我不确定你要做什么,但这里有一些基于你的代码的工作代码:
property = {a=120, b=50, c=85}
operator = {has = {a=2, b=3}, coefficient = {a = 0.45}}
function Result(x) return operator.has[x] * operator.coefficient[x] end
print (Result('a'))
打印'0.9'
答案 1 :(得分:2)
对于该语言的新手来说,这是一个常见的问题。埋在Lua手册中somewhere:
为了表示记录,Lua使用字段名称作为索引。该 language通过提供a.name作为语法来支持这种表示 糖为[“名称”]。
这解释了您function Result(x)
失败的原因。如果您翻译语法糖,您的函数将变为:
function Result(x)
return operator.has['x'] * operator.coefficient['x']
end
Geary已经为此提供了解决方案,所以我不会在此重申。