标题:lua table 排序问题
只看楼主
lvweicheng
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2019-11-28
 问题点数:0 回复次数:0 
lua table 排序问题
程序代码:
    
    local function compare(a, b)
        print("b", b)
        if a ~= nil and b ~= nil then
            if tItem_Exp[a[2]] ~= nil and tItem_Exp[b[2]] == nil then
                return true
            elseif tItem_Exp[a[2]] == nil and tItem_Exp[b[2]] ~= nil then
                return false
            elseif tItem_Exp[a[2]] ~= nil and tItem_Exp[b[2]] ~= nil then
                return true
            else
                if a[3] == b[3] then
                    if a[4] == b[4] then
                        return a[5] < b[5]
                    else
                        return tEquip_Color_modulus[a[4]] < tEquip_Color_modulus[b[4]]
                    end
                else
                    return a[3] < b[3]
                end
            end
        else
            return false
        end
    end
    -- print(compare)
    table.sort(ServantWnd.tItem, compare)

这段代码中打印b为什么会出现nil的情况
搜索更多相关主题的帖子: then return end and if 
2019-11-28 19:44



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-498132-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.032112 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved