在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1 使用function声明的函数为全局函数,在被引用时可以不会因为声明的顺序而找不到 例子: function test() test2() test1() end local function test1() print("hello test1") end function test2() print("hello test2") end test()
改为一下两种方式就可以正常运行 1 local function的声明放在引用的前面 local function test1() print("hello test1") end function test() test2() test1() end function test2() print("hello test2") end test() 2 local function声明使用function方式 function test() test2() test1() end function test1() print("hello test1") end function test2() print("hello test2") end test()
|
请发表评论