AppleScript:比较列表中的引用

时间:2011-05-12 17:22:33

标签: list comparison applescript compare boolean

如何将此输出设为true而不是false:

{item 1 of {4}, item 1 of {5}} = {4, 5}

我知道你可以这样做......

{4, 5} = {4, 5}

......但我需要做一些更复杂的事情。

这可能吗?

2 个答案:

答案 0 :(得分:3)

它可能与=运算符的绑定有关,例如在评估lhs和rhs表达式之前对其进行评估。

例如,这是true

set x to {item 1 of {4}, item 1 of {5}}
x = {4, 5}

答案 1 :(得分:2)

nmok我明白了

set c to {item 1 of {4}, item 1 of {5}}
c is equal to {4, 5}