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

发布于 2024-12-02 20:02:26 字数 763 浏览 2 评论 0原文

我有这个表:

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. 一种能够检查两个表是否相等的方法(目前它让我无法索引为零)

  2. 如果等式为真,则仅执行“print (b+c)”代码,或者如果不为真,则先执行“print (a+b)”,然后执行“print ( b+c) 其次不重复代码。

I have this 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"},
               }

This function:

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

and the foo function:

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

Can you help me find? :

  1. A way to be able to check if the two tables are or not equal (currently it gives me cannot index nil)

  2. A way to execute only the "print (b+c)" code if the equality is true, or if is not true then both "print (a+b)" first and "print (b+c) secondly without duplicating the code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

戒ㄋ 2024-12-09 20:02:26

我在这方面看到了很多问题。首先,我永远不会依赖在外部函数中设置的 i ,它实际上应该是一个局部变量,并在需要时作为参数传递。也就是说,在尝试访问 no_table[x][y] 之前,您需要检查 no_table[x] 是否存在。因此,对于 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

Lots of problems I'm seeing in this. First, I'd never rely on i being set in an external function, it really should be a local variable and passed as a parameter if you need it. That said, you need to check if no_table[x] exists before trying to access no_table[x][y]. So, for foo you'd have:

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

Also, for numbers in the table, if you want to do arithmetic, you need to remove the quotes:

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"},
               }

Next, in testfoo, you're passing a table, so you either need to split out the values of a, b, c, and d on your function call, or you can just pass the table itself and handle that in 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

This results in:

> testfoo()
25
37
31

Edit: One final cleanup, since the conditions are the same, you can use an else rather than an 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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文