a != null && (a = 1) 运算符优先级 的问题 && 的优先级比 = 的优先级高 a != null && a = 1 等效于 (a != null && a) = 1 参考链接https://developer.mozilla.org...
优先级问题