CJava:切换布尔语句?

CJava:切换布尔语句?,第1张

概述有一个简短的方法来切换布尔值? 使用整数,我们可以执行以下 *** 作: int i = 4;i *= 4; // equals 16/* Which is equivalent to */i = i * 4; 那么布尔值也有一些东西(比如整数的* =运算符)? 在C: bool booleanWithAVeryLongName = true;booleanWithAVeryLongName = 有一个简短的方法来切换布尔值?

使用整数,我们可以执行以下 *** 作:

int i = 4;i *= 4; // equals 16/* Which is equivalent to */i = i * 4;

那么布尔值也有一些东西(比如整数的* =运算符)?

在C:

bool booleanWithAVeryLongname = true;booleanWithAVeryLongname = !booleanWithAVeryLongname;// Can it shorter?booleanWithAVeryLongname !=; // Or something?

在Java中:

boolean booleanWithAVeryLongname = true;booleanWithAVeryLongname = !booleanWithAVeryLongname;// Can it shorter?booleanWithAVeryLongname !=; // Or something?
解决方法 没有这样的运算符,但这有点短:booleanWithAVeryLongname ^ = true; 总结

以上是内存溢出为你收集整理的C/Java:切换布尔语句?全部内容,希望文章能够帮你解决C/Java:切换布尔语句?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1238498.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存