使用整数,我们可以执行以下 *** 作:
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:切换布尔语句?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)