lua只读表的实现

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lua只读表的实现相关的知识,希望对你有一定的参考价值。

先上代码:

function const(t)
  local temp = t --temp以upvalue的形式存储t
  local ret = {}
  local mt = {
    __index = function(t,k)
      return temp[k]
    end,
    __newindex = function()--空函数覆盖newindex
      
    end
  }
  setmetatable(ret,mt)
  return ret
end

之后可以这样用:

t = const {

  SMALL= 24,

  NORMAL= 30,

}

 

执行测试:

t.SMALL = nil  --不可改变或删除成员,不会生效
t.BIG = "mmm" --不可添加成员,不会生效
print(t.SMALL,t.BIG)

输出:

  24  nil

以上是关于lua只读表的实现的主要内容,如果未能解决你的问题,请参考以下文章

深入Lua:Table的实现

lua面向对象是怎么实现的

Lua性能优化之table

Lua实现简单的类,继承,多态 实例

Lua用table实现各种数据结构-链表

在lua中只读可迭代表?