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

Lua chapter 6

时间:2014-05-10 08:36:53      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:lua简单初学笔记

一个简单的迭代器示例

--迭代工厂函数

function value(t)

    local i = 0;

    return 
          function()
               i = i+1;

               return t[i];

          end;

end;

t = {10,20,30};
iter = value(t);
while true do
     local element = iter();
     if element == nil  then
          break;

    end;

          print("Element: " .. element);
end;

print();


--  另一种写法

for element in value(t) do

    print("Element: " .. element);

end;


2、输出所有单词

function allword()
    local line = io.read();
    local pos = 1;

    return 

        function()

              local s, e = string.find(line, "%w+", pos);
              if s then
                    pos = e + 1;
                    return string.sub(line, s, e);
              end;
        end;
end;

for word in allword() do

    print(word);

end;


Lua chapter 6,布布扣,bubuko.com

Lua chapter 6

标签:lua简单初学笔记

原文地址:http://blog.csdn.net/core__code/article/details/24999545

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