什么是 NOR 逻辑运算符?

发布于 2024-07-21 17:20:09 字数 84 浏览 6 评论 0原文

!(a 或b)
!a 或 !b
!(a 和 b)

还有其他东西吗?

Is nor:

!(a or b)
!a or !b
!(a and b)

something else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

永言不败 2024-07-28 17:20:09

!(a 或 b)

请参阅 http://en.wikipedia.org/wiki/Logical_NOR了解更多:

布尔逻辑中,逻辑或非联合否认是一个真值函数运算符,它产生的结果是逻辑或< /a>. 也就是说,当 p 和 q 都不为真时,即 (p NOR q) 形式的句子为真,即当 p 都为真时和 q 为假。 在语法中,nor并列连词...

!(a or b)

see http://en.wikipedia.org/wiki/Logical_NOR for more:

In boolean logic, logical nor or joint denial is a truth-functional operator which produces a result that is the negation of logical or. That is, a sentence of the form (p NOR q) is true precisely when neither p nor q is true—i.e. when both of p and q are false. In grammar, nor is a coordinating conjunction...

三五鸿雁 2024-07-28 17:20:09

您的第一个选择: !(a 或 b)

恰好相当于 !a 和 !b

your first alternative: !(a or b)

which happens to be equivalent to !a and !b

小清晰的声音 2024-07-28 17:20:09

NOR(a, b) 被定义为 NOT(OR(a, b)) ,即中缀中的 !(a or b)符号。 根据德摩根定律,这也相当于 (!a) 和 ( !b)

NOR(a, b) is defined to be NOT(OR(a, b)) which is !(a or b) in infix notation. By De Morgan's Laws, this is also equivalent to (!a) and (!b).

风筝在阴天搁浅。 2024-07-28 17:20:09

((a NAND a) NAND (b NAND b)) NAND ((a NAND a) NAND (b NAND b)) 如果您想要电路制造友好。 :)

((a NAND a) NAND (b NAND b)) NAND ((a NAND a) NAND (b NAND b)) if you want to be circuit fabrication friendly. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文