Lua:如何根据条件执行不同的块?

时间:2011-09-03 22:08:29

标签: function printing lua null lua-table

我有这张桌子:

no_table ={
        {a="3", b="22", c="18", d="ABC"},
        {a="4", b="12", c="25", d="ABC"},
        {a="5", b="15", c="16", d="CDE"},
               }

此功能:

function testfoo()
    i = 1
    while no_table[i] ~= nil do
        foo(no_table[i])
        i = i + 1
    end
end

和foo函数:

function foo(a,b,c,d)
    if no_table[i][4] ~= no_table[i-1][4]
        then
           print (a+b)
    elseif no_table[i][4] == no_table[i-1][4]
        then
           print (b+c)
    end
end
你帮我找到了吗? :

  1. 一种能够检查两个表是否相等的方法(目前它不能索引nil)

  2. 如果等式为真,则只执行“print(b + c)”代码的方法,或者如果不为真,则首先“print(a + b)”和“print(b + c)”其次,没有重复代码。

1 个答案:

答案 0 :(得分:2)

我在这看到很多问题。首先,我永远不会依赖i在外部函数中设置,它实际上应该是一个局部变量,并在需要时作为参数传递。也就是说,在尝试访问no_table[x]之前,您需要检查no_table[x][y]是否存在。所以,对于foo你有:

function foo(a,b,c,d)
    if not (no_table[i] and no_table[i-1] and no_table[i][4] == no_table[i-1][4])
        then
           print (a+b)
    elseif no_table[i] and no_table[i-1] and no_table[i][4] == no_table[i-1][4]
        then
           print (b+c)
    end
end

另外,对于表中的数字,如果要进行算术运算,则需要删除引号:

no_table ={
        {a=3, b=22, c=18, d="ABC"},
        {a=4, b=12, c=25, d="ABC"},
        {a=5, b=15, c=16, d="CDE"},
               }

接下来,在testfoo中,您正在传递一个表,因此您需要在函数调用中拆分a,b,c和d的值,或者您只需传递表本身并在foo中处理:

function foo(t)
    if not (no_table[i] and no_table[i-1] and no_table[i][4] == no_table[i-1][4])
        then
           print (t.a+t.b)
    elseif no_table[i] and no_table[i-1] and no_table[i][4] == no_table[i-1][4]
        then
           print (t.b+t.c)
    end
end

这导致:

> testfoo()
25
37
31

编辑:最后一次清理,因为条件相同,您可以使用else而不是elseif

function foo(t)
    if no_table[i] and no_table[i-1] and no_table[i][4] == no_table[i-1][4]
        then
           print (t.b+t.c)
    else
           print (t.a+t.b)
    end
end