摘要: 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 retu... 阅读全文
posted @ 2016-09-26 16:21 Guoliangjun 阅读(674) 评论(0) 推荐(0)