Lua 单例类

时间:2022-07-05 15:39:25
function SingleTon:new()

  local store = nil

  return function(self)

    if store then return store end
    local o ={}
    setmetatable(o,self)
    self.__index = self
    
    store = o
    return o
  end end SingleTon.instance = SingleTon:new()