Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们需要维护一个 *.bas 文件(基本 STAMP)。它包含以下行:
if (x^^y) then
我们不知道“^^”二元运算符是什么意思。(单个“^”是异或,“^/”是异或)。尝试在板上进行测试非常复杂。
“^^”是一个逻辑异或运算,就像“||”一样 和“&&”是 OR 和 AND 逻辑运算。
“^”运算符代表我说的异或运算,但它是按位异或运算,不是逻辑的,就像“|”一样 是按位或,“&”是按位与。
(我们在组件上烧掉了它。)