table.foreach(table, function(i, v))
說明:與foreachi不同的是,foreach會對整個表進行迭代,
如果要遍歷字典類型的 table 表,就該用這個函數。
範例:
t1 = {2,
4,
6,
language="Lua",
version="5",
8,
10,
12,
web="hello lua
"};
table.foreach(t1, function(i, v) print (i, v) end)
輸出結果:
1 2
2 4
3 6
4 8
5 10
6 12
web hello lua
language Lua
version 5
實用範例:
#table.foreach (GetWorldWindowPosition(), print)
在命令列達這道指令可以得到該視窗的位置和大小。