将nil附加到Lua序列

假设我有一个序列:

a = { 10,12,13 }

该序列的长度(#a)为3.

现在,假设我执行以下操作:

table.insert(a,nil)

(或[#a 1] =零.)

这会以任何方式影响桌面吗?

这个问题的答案是决定性的,还是这种“未定义的行为”?

在Luas上我检查过(Lua 5.1,Lua 5.3)这不会影响表格.但我想知道这是否是我不能依赖的“未定义行为”.

该手册仅讨论在序列的中间添加nil,但它没有(根据我的解释)谈论将它添加到序列的末尾.

解决方法

在序列中添加nil值根本不起作用.实际上,一个表不能保持零值.从 the manual开始:

Tables can be heterogeneous; that is,they can contain values of all types (except nil). Any key with value nil is not considered part of the table. Conversely,any key that is not part of a table has an associated value nil.

因此,表{10,13,nil}相当于{10,13},两者都是序列.

类似地,一个非序列的例子:一个表{10,20,nil,40}相当于{[1] = 10,[2] = 20,[3] = nil,[4] = 40}或{[ 1] = 10,[4] = 40}

相关文章

1.github代码实践源代码是lua脚本语言,下载th之后运行thmai...
此文为搬运帖,原帖地址https://www.cnblogs.com/zwywilliam/...
Rime输入法通过定义lua文件,可以实现获取当前时间日期的功能...
localfunctiongenerate_action(params)localscale_action=cc...
2022年1月11日13:57:45 官方:https://opm.openresty.org/官...
在Lua中的table(表),就像c#中的HashMap(哈希表),key和...