这是什么?
它是Add的函数调用,如果是,那么输入参数是什么 – 没有将该表分配给变量输入 – 没有等号?
它是Add的函数定义 – 看起来很奇怪,没有任何实现并指定输入表中的内容?
添加包含表格的表格?我从未见过用括号而不是花括号创建的表格?
serviceDeFinitions.Add( input { name="p1",baseType="NUMBER",description="The first addend of the operation" },input { name="p2",description="The second addend of the operation" },output { baseType="NUMBER",description="The sum of the two parameters" },description { "Add two numbers" })解决方法 当调用只有一个参数是表或字符串的函数时,可以省略括号.从 manual:
All argument Expressions are evaluated before the call. A call of the form
f{fIElds}
is syntactic sugar forf({fIElds})
; that is,the argument List is a single new table. A call of the formf'string'
(orf"string"
orf[[string]])
is syntactic sugar forf('string')
; that is,the argument List is a single literal string.
这意味着以下函数调用有效:
somefunction({1,2,3,4})somefunction{1,4}
或者,使用字符串:
print('hello!')print 'hello!'总结
以上是内存溢出为你收集整理的function – 我不明白的Lua语法片段全部内容,希望文章能够帮你解决function – 我不明白的Lua语法片段所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)