gpt4 book ai didi

lua - table.unpack() 只返回第一个元素

转载 作者:行者123 更新时间:2023-12-04 03:15:06 34 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Lua unpack() messing arguments

(1 个回答)


6年前关闭。




有人可以向我解释为什么table.unpack()仅当在 table.unpack() 之后的带有附加参数的函数调用中使用时才返回第一个表元素?

这是一些演示代码:

local a = {1,2,3,4,5}
print("Test", table.unpack(a)) -- prints "Test 1 2 3 4 5"
print(table.unpack(a), "Test") -- prints "1 Test"

我不明白为什么第二行只打印 1 Test .我希望它打印 1 2 3 4 5 Test .有人可以解释这种行为吗?我也对如何进行第二次调用打印 1 2 3 4 5 Test 感兴趣。 .

最佳答案

table.unpack返回多个值。在这种情况下定义的行为是,如果它不是表达式列表中的最后一个,那么除了第一个返回值之外的所有值都将被丢弃。

来自 book :

Lua always adjusts the number of results from a function to the circumstances of the call. When we call a function as a statement, Lua discards all of its results. When we use a call as an expression, Lua keeps only the first result. We get all results only when the call is the last (or the only) expression in a list of expressions.



作为一种解决方法,您可以将其余参数附加到表中,并使表成为最后一个参数。

关于lua - table.unpack() 只返回第一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32439689/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com