c++中的逻辑运算符有哪些

c++ 中的逻辑运算符有三个:and (&&)、or (||) 和 not (!)。and 返回两个操作数都为 true 时为 true,否则为 false;or 返回两个操作数之一为 true 时为 true,否则为 false;not

c++ 中的逻辑运算符有三个:and (&&)、or (||) 和 not (!)。and 返回两个操作数都为 true 时为 true,否则为 false;or 返回两个操作数之一为 true 时为 true,否则为 false;not 反转其操作数的布尔值。

c++中的逻辑运算符有哪些

C++ 中的逻辑运算符

逻辑运算符用于对布尔值(true/false)进行操作,产生新的布尔值。C++ 中的逻辑运算符有三个:

  • AND(&&)
  • OR(||)
  • NOT(!)

AND (&&)

AND 运算符返回 true 当且仅当其两个操作数都是 true。否则,它返回 false。表格如下:

操作数1 操作数2 结果
true true true
true false false
false true false
false false false

OR (||)

OR 运算符返回 true 当且仅当其两个操作数之一为 true。否则,它返回 false。表格如下:

操作数1 操作数2 结果
true true true
true false true
false true true
false false false

NOT (!)

NOT 运算符是单目运算符,它反转其操作数的布尔值。true 变为 false,false 变为 true。表格如下:

操作数 结果
true false
false true

以上就是c++++中的逻辑运算符有哪些的详细内容,更多请关注叮当号网其它相关文章!

文章来自互联网,只做分享使用。发布者:weapp,转转请注明出处:https://www.dingdanghao.com/article/431204.html

(0)
上一篇 2024-05-01
下一篇 2024-05-01

相关推荐

联系我们

在线咨询: QQ交谈

邮件:442814395@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信公众号