Lua 有一個(gè)特性就是默認(rèn)定義的變量都是全局的。為了避免這一點(diǎn),我們需要在定義變量時(shí)使用 local 關(guān)鍵字。
但難免會出現(xiàn)遺忘的情況,這時(shí)候出現(xiàn)的一些 bug 是很難查找的。所以我們可以采取一點(diǎn)小技巧,改變創(chuàng)建全局變量的方式。
local __g = _G
-- export global variable
cc.exports = {}
setmetatable(cc.exports, {
__newindex = function(_, name, value)
rawset(__g, name, value)
end,
__index = function(_, name)
return rawget(__g, name)
end
})
-- disable create unexpected global variable
setmetatable(__g, {
__newindex = function(_, name, value)
local msg = "USE 'cc.exports.%s = value' INSTEAD OF SET GLOBAL VARIABLE"
error(string.format(msg, name), 0)
end
})
-- export global
cc.exports.MY_GLOBAL = "hello"
-- use global
print(MY_GLOBAL)
-- or
print(_G.MY_GLOBAL)
-- or
print(cc.exports.MY_GLOBAL)
-- delete global
cc.exports.MY_GLOBAL = nil
-- global function
local function test_function_()
end
cc.exports.test_function = test_function_
-- if you set global variable, get an error
INVALID_GLOBAL = "no"