Beanshell 异或抛出错误

发布于 2024-10-19 06:29:24 字数 240 浏览 3 评论 0原文

当我尝试使用异或运算符时:

if(a ^ b)

出现以下错误:

内部错误:未实现的二元运算符

是否有另一种方法可以在 beanshell 中执行此操作,或者我应该这样做:

if((a && !b) || (!a && b))

When I try to use the xor operator:

if(a ^ b)

I get the following error:

internal Error: unimplemented binary operator

Is there another way to do it in beanshell, or should I just do:

if((a && !b) || (!a && b))

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷心人i 2024-10-26 06:29:24

if(a != b) 相当于布尔值的 XOR (a ^ b)。

if(a != b) is equivalent to XOR (a ^ b) for booleans.

寒冷纷飞旳雪 2024-10-26 06:29:24

在 Beanshell2 中实现了异或运算符,请参阅 http://code.google.com/p/beanshell2

In Beanshell2 the xor operator is implemented, see http://code.google.com/p/beanshell2

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文