lua 序列化函数

local function f( ... )
    print('hello')
end
local x = string.dump(f, true)
loadstring(x)()
原文地址:https://www.cnblogs.com/xiangnan/p/5902576.html