(0 not 1)(1 not 0)没有这个语法,not本身不是比较操作符,只是逻辑否定。先比较后产生一逻辑结果(True还是False),然后才用到Not, Or, And这些逻辑操作符。应该是if (Not 0 = 1) And (Not 1 = 0) then ......Endif