C Operator | and can also operate bool operands

小咪咪 2022-04-18 00:35 236阅读 0赞

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

Yes, binary operators&,| and^ are also predefined for the bool type.

& computes the logical AND of its operands; that is, the result is true if and only if both its operands are true. The & operator evaluates both operators regardless of the first one’s value.

| computes the logical OR of its operands; that is, the result is false if and only if both its operands are false.

^ computes the logical exclusive-or of its operands; that is, the result is true if and only if exactly one of its operands is true.

给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow

这里写图片描述

发表评论

表情:
评论列表 (有 0 条评论,236人围观)

还没有评论,来说两句吧...

相关阅读