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.
当我尝试使用 xor 运算符时:
if(a ^ b)
我收到以下错误:
内部错误:未实现的二元运算符
是否有另一种方法可以在 beanshell 中做到这一点,或者我应该这样做:
if((a && !b) || (!a && b))
if(a != b)等效a ^ b于布尔值的 XOR ( )。
if(a != b)
a ^ b
在 Beanshell2 中实现了 xor 运算符,请参阅http://code.google.com/p/beanshell2