------------------------------------------------ --作者:gzg --日期:2019-03-25 --文件:GlobalConst.lua --模块:GlobalConst --描述:全局常量的定义 ------------------------------------------------ local GlobalConst = { --打开URL的事件ID OpenURLEventID = 102 } --这里对表进行处理,只允许读取,不允许设置 local L_MetaTable = {} L_MetaTable.__index = function(table,key) return GlobalConst[key]; end L_MetaTable.__newindex = function(table,key,value) Debug.LogError("Hi! Hi! Don't play fire!" .. tostring(key) .. "::" .. tostring(value)); end local L_RetTable = setmetatable({},L_MetaTable); return L_RetTable