如果两个列表相同,为什么我会弄虚作假?

时间:2019-11-06 07:09:33

标签: g1ant

如果两个列表相同,为什么我会出错?检查下面的代码

♥list1⟦⟧=a❚b❚c❚d
♥list2⟦⟧=a❚b❚c❚d
dialog ♥list1==♥list2

1 个答案:

答案 0 :(得分:2)

列表不同,只是包含相同的元素。要进行检查,您需要将每个列表元素彼此进行比较,例如,如下所示。

♥list1 = a❚b❚c❚d
♥list2 = a❚b❚c❚d

♥areListsTheSame = true

if ⊂♥list1.Count == ♥list2.Count⊃
    ♥i = 1
    while ⊂♥areListsTheSame && ♥i <= ♥list1.Count⊃
        if ⊂♥list1⟦♥i⟧ != ♥list2⟦♥i⟧⊃
            ♥areListsTheSame = false
        end if
        ♥i = ♥i + 1
    end while
else
    ♥areListsTheSame = false
end if

if ⊂♥areListsTheSame⊃
    dialog ‴The lists are the same‴
else
    dialog ‴The lists are not the same‴
end if