本文介绍了布尔对立面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法写这个更简单?
函数makeOpposite(a){
if(!a){
a = true ;
}
else {
a = false;
}
}
解决方案
a =!a;
-
Ian Collins。
真棒!谢谢Ian ...
a =!a;
或:
a ^ = true;
-
John W. Kennedy
Logres的盲人统治者
以理性美德的谬误滋养土地。 br $> b $ b - 查尔斯威廉姆斯。 Taliessin通过Logres:Prelude
Is there a way to write this simpler?
function makeOpposite(a) {
if(!a) {
a = true;
}
else {
a = false;
}
}
解决方案
a = !a;
--
Ian Collins.
a = !a;
--
Ian Collins.
awesome! Thanks Ian...
a = !a;
Or:
a ^= true;
--
John W. Kennedy
"The blind rulers of Logres
Nourished the land on a fallacy of rational virtue."
-- Charles Williams. "Taliessin through Logres: Prelude"
这篇关于布尔对立面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!