元表是一個表,有助于改變它連接到一個密鑰集和相關(guān)的元方法的幫助下表的行為。這些元方法是強(qiáng)大的lua功能,如:
- 更改/添加功能,以運(yùn)算符表
- 查看metatables當(dāng)鑰匙不在使用__index元表中的表可用。
有跡象表明,在處理metatables其中包括使用了兩種重要的方法,
- setmetatable(table,metatable): 這個方法是用來設(shè)置元表的一個表。
- getmetatable(table): 此方法用于獲取表的元表。
讓我們先來看看如何設(shè)置一個表作為另一個元表。它如下所示。
復(fù)制代碼 代碼如下:
mytable = {}
mymetatable = {}
setmetatable(mytable,mymetatable)
上面的代碼可以在一個單一的行被表示為如下所示。
復(fù)制代碼 代碼如下:
mytable = setmetatable({},{})
__index
元表的查找元表時,它不是在表中提供一個簡單的例子如下所示。
復(fù)制代碼 代碼如下:
mytable = setmetatable({key1 = "value1"}, {
__index = function(mytable, key)
if key == "key2" then
return "metatablevalue"
else
return mytable[key]
end
end
})
print(mytable.key1,mytable.key2)
當(dāng)我們運(yùn)行上面的程序,會得到下面的輸出。
復(fù)制代碼 代碼如下:
value1 metatablevalue
讓解釋發(fā)生了什么事,在上面的例子中的步驟,
- 該表mytable 這里 {key1 = "value1"}.
- 元表設(shè)置為mytable中包含一個函數(shù) __index 我們稱之為元方法。
- 元方法確實(shí)仰視的索引“key2”一個簡單的工作,如果找到,則返回“metatablevalue”,否則返回相應(yīng)mytable索引的值。
我們可以有上述程序的簡化版本,如下所示。
復(fù)制代碼 代碼如下:
mytable = setmetatable({key1 = "value1"}, { __index = { key2 = "metatablevalue" } })
print(mytable.key1,mytable.key2)
__newindex
當(dāng)我們增加__newindex到元表中,如果鍵是沒有在表中可用的,新的鍵的行為將被中繼的方法來定義。一個簡單的示例,其中元表的索引時,索引不是在主表可設(shè)定如下。
復(fù)制代碼 代碼如下:
mymetatable = {}
mytable = setmetatable({key1 = "value1"}, { __newindex = mymetatable })
print(mytable.key1)
mytable.newkey = "new value 2"
print(mytable.newkey,mymetatable.newkey)
mytable.key1 = "new value 1"
print(mytable.key1,mymetatable.newkey1)
當(dāng)運(yùn)行上面的程序,會得到如下的輸出。
復(fù)制代碼 代碼如下:
value1
nil new value 2
new value 1 nil
可以在上面的程序看,如果一個關(guān)鍵存在于主表,它只是更新它。當(dāng)一個鍵不可用在maintable,它添加了關(guān)鍵metatable。
該更新用 rawset 函數(shù)相同的表的另一個例子如下所示。
復(fù)制代碼 代碼如下:
mytable = setmetatable({key1 = "value1"}, {
__newindex = function(mytable, key, value)
rawset(mytable, key, "\""..value.."\"")
end
})
mytable.key1 = "new value"
mytable.key2 = 4
print(mytable.key1,mytable.key2)
當(dāng)我們運(yùn)行上面的程序,會得到下面的輸出。
復(fù)制代碼 代碼如下:
new value "4"
rawset 設(shè)定值,而不使用元表 __newindex。同樣有rawget,獲取的值,而無需使用__index。
表加入操作符的行為
一個簡單的例子結(jié)合使用+運(yùn)算符的兩個表如下所示。
復(fù)制代碼 代碼如下:
mytable = setmetatable({ 1, 2, 3 }, {
__add = function(mytable, newtable)
for i = 1, table.maxn(newtable) do
table.insert(mytable, table.maxn(mytable)+1,newtable[i])
end
return mytable
end
})
secondtable = {4,5,6}
mytable = mytable + secondtable
for k,v in ipairs(mytable) do
print(k,v)
end
當(dāng)我們運(yùn)行上面的程序,會得到下面的輸出
復(fù)制代碼 代碼如下:
1 1
2 2
3 3
4 4
5 5
6 6
該__add密鑰包含在元表中添加操作符+行為。表的鍵和相應(yīng)的操作符如下所示。
__call
完成方法調(diào)用的添加行為,使用__call聲明。一個簡單的例子,返回值的主表的總和與傳遞表。
復(fù)制代碼 代碼如下:
mytable = setmetatable({10}, {
__call = function(mytable, newtable)
sum = 0
for i = 1, table.maxn(mytable) do
sum = sum + mytable[i]
end
for i = 1, table.maxn(newtable) do
sum = sum + newtable[i]
end
return sum
end
})
newtable = {10,20,30}
print(mytable(newtable))
當(dāng)我們運(yùn)行上面的程序,會得到下面的輸出。
復(fù)制代碼 代碼如下:
更改打印語句的行為,可以用__toString元方法。一個簡單的例子如下所示。
復(fù)制代碼 代碼如下:
mytable = setmetatable({ 10, 20, 30 }, {
__tostring = function(mytable)
sum = 0
for k, v in pairs(mytable) do
sum = sum + v
end
return "The sum of values in the table is " .. sum
end
})
print(mytable)
當(dāng)我們運(yùn)行上面的程序,會得到下面的輸出。
復(fù)制代碼 代碼如下:
The sum of values in the table is 60
如果知道元數(shù)據(jù)表的功能完全,真的可以執(zhí)行很多操作,這將是不使用它非常復(fù)雜。所以盡量讓工作使用metatables在元表提供不同的選擇作為樣本的解釋,也可以創(chuàng)建自己的樣品。
您可能感興趣的文章:- Lua中的元表與元方法學(xué)習(xí)總結(jié)
- Lua中使用元表(metatable)執(zhí)行算術(shù)類元方法實(shí)例
- Lua中的元表(metatable)、元方法(metamethod)詳解