Window = {}
Window.prototype = {x = , y = , width = , 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--]] Window.mt.__index = Window.prototype--当我们想不通过调用__index metamethod来访问一个表,我们可以使用rawget函数, w = Window.new{x = , y = }
print(w.width)
相关文章
- 03-16成功解决TypeError: slice indices must be integers or None or have an __index__ method
- 03-16根据 sitemap 的规则[0],当前页面 [pages/index/index] 将被索引
- 03-16根据 sitemap 的规则[0],当前页面 [pages/index/index] 将被索引
- 03-16INDEX SKIP SCAN 和 INDEX RANGE SCAN以及索引会失效
- 03-168 Dataframe 排序(sort_index()和sort_values())
- 03-16修复 status 为 unusable 的 index
- 03-16easyui中在formatter: function (value, row,index) {中添加删除方法
- 03-16查找数组中重复项的index
- 03-16索引重置reset_index(inplace=True) 中的inplace=True什么时候添加
- 03-16724. Find Pivot Index