码迷,mamicode.com
首页 > 其他好文 > 详细

lua闭包

时间:2017-06-11 10:12:16      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:function   return   counter   blog   code   out   count   cti   exit   

function MakeCounter()
    local t = 0
    return function()
        t = t + 1
        return t
    end
end

local func = MakeCounter()
for i = 0,10 do
    print(func())
end
local func2 = MakeCounter()
for i = 0,10 do
    print(func2())
end

>lua -e "io.stdout:setvbuf ‘no‘" "main.lua"
1
2
3
4
5
6
7
8
9
10
11
1
2
3
4
5
6
7
8
9
10
11
>Exit code: 0

lua闭包

标签:function   return   counter   blog   code   out   count   cti   exit   

原文地址:http://www.cnblogs.com/zhangdongsheng/p/6984154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!