元表概念:
-
引言:Lua中的每个值都有一套预定义的操作集合,如数字相加等。但无法将两个table相加,此时可通过元表修改一个值的行为,使其在面对一个非预定义的操作时执行一个指定操作。
-
访问机制:一般的元方法都只针对Lua的核心,也就是一个虚拟机。它会检测一个操作中的值是否有元表,这些元表是否定义了关于次操作的元方法。例如两个table相加,先检查两者之一是否有元表,之后检查是否有一个叫“__add”的字段,若找到,则调用对应的值。“__add”等即时字段,其对应的值(往往是一个函数或是table)就是“元方法”。
from:http://www.cnblogs.com/nepaul/archive/2011/08/18/2143936.html
元表实例
- 算术类元方法: 字段:__add __mul __ sub __div __unm __mod __pow (__concat)
- 代码:(两个table相加)
-
关系类元方法: 字段:__eq __lt(<) __le(<=),其他Lua自动转换 a~=b --> not(a == b) a > b --> b < a a >= b --> b <= a 【注意NaN的情况】
- 代码:
-
table访问的元方法: 字段: __index __newindex
-
__index:
查询:访问表中不存的字段
rawget(t,i) -
__newindex:
更新:向表中不存在索引赋值
rawswt(t,k,v)
-
贯穿《Programming in Lua》元表与元方法整张的实例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
<span style=
"font-family: 黑体;"
>--[[
Set = {}
mt = {} --元表
function Set.
new
(l)
local
set
= {}
set
[v] =
true
end
return
set
end
--================================================
function Set.tostring(
set
)
local l = {}
l[#l + 1] = e
end
return
"{"
.. table.concat(l,
","
) ..
"}"
end
function Set.print(s)
print(Set.tostring(s))
end
--1 加(__add),并集===============================
function Set.union(a,b)
error(
"attemp to 'add' a set with a non-set value"
,2) --error第二个参数的含义P116
end]]
local res = Set.
new
{}
return
res
end
s1 = Set.
new
{10,20,30,50}
s2 = Set.
new
{30,1}
--print(getMetatable(s1))
--print(getMetatable(s2))
mt.__add = Set.union
s3 = s1 + s2
--Set.print(s3)
--[[元表混用
s = Set.
new
{1,2,3}
s = s + 8
Set.print(s + 8)
]]
--2 乘(__mul),交集==============================
function Set.intersection(a,b)
local res = Set.
new
{}
res[k] = b[k]
end
return
res
end
mt.__mul = Set.intersection
--Set.print(s2 * s1)
--3 关系类===================================NaN的概念====
mt.__le = function(a,b)
if
not b[k] then
return
false
end
end
return
true
end
mt.__lt = function(a,b)
return
a <= b and not (b <= a)
end
mt.__eq = function(a,b) --竟然能这么用!?----
return
a <= b and b <= a
end
g1 = Set.
new
{2,4,3}
g2 = Set.
new
{4,10,2}
print(g1 <= g2)
print(g1 < g2)
print(g1 >= g2)
print(g1 > g2)
print(g1 == g1 * g2)
--]]
--============================================
--4 table访问的元方法=========================
--[[
--__index有关继承的典型示例
Window = {}
Window.prototype = {x = 0,y = 0,width = 100,height}
Window.mt = {}
function Window.
new
(o)
setMetatable(o,Window.mt)
return
o
end
Window.mt.__index = function (table,key)
return
Window.prototype[key]
end
w = Window.
new
{x = 10,y = 20}
print(w.width)
function setDefault (t,d)
local mt = {__index = function ()
return
d end}
setMetatable(t,mt)
end
tab = {x = 10,y = 20}
print(tab.x,tab.z)
setDefault(tab,0)
print(tab.x,tab.z)
--]]
--13.4.5 只读的table
function readOnly(t)
local proxy = {}
local mt = {
__index = t,
__newindex = function(t,v)
error(
"attempt to update a read-only table"
,2)
end
}
setMetatable(proxy,mt)
return
proxy
end
days = readOnly{
"Sunday"
,
"Monday"
,
"Tuesday"
,
"W"
,
"T"
,
"F"
,
"S"
}
print(days[1])
days[2] =
"Noday"
</span>
|
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。