`set end of`和`set the end of`之间的区别(Applescript)

时间:2014-09-15 21:18:37

标签: applescript

以下两个命令之间是否存在差异(是否有the)?

set {the_list, blah} to {{},"Test"}
set end of the_list to blah

set {the_list, blah} to {{},"Test"}
set the end of the_list to blah

这通常适用于blah

的大量the_list

1 个答案:

答案 0 :(得分:1)

没有区别。 “the”只是提高可读性的一个词,但是当applescript执行代码时它什么都不做。