我有四个功能。 每个功能执行时间。 它会在表格中存储一些不同的值。 当执行Enter函数然后它检索。 逐一。 存储在表中的任何函数数据。
table={}
function one()
table.one="1"
end
function two()
table.two="2"
end
function three()
table.three="3"
end
function four()
table.four="4"
end
function enter()
for i,v in pairs(table)do
print("on by one",v)
end
end
one()
two()
enter()
输出:1 2
(它是一个接一个的序列)
我想要这样的输出:12
如果我下次执行功能不同的订单时间呢
two()
one()
enter()
输出:2 1
(它是一个接一个的序列)
我想要这样的输出:21
如果我下次执行
two()
three()
four()
enter()
我想要像这样的234
输出
是否可以编写代码。
请帮助任何人