什么是 NOR 逻辑运算符?
是也:
!(a 或b)
!a 或 !b
!(a 和 b)
还有其他东西吗?
Is nor:
!(a or b)
!a or !b
!(a and b)
something else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是也:
!(a 或b)
!a 或 !b
!(a 和 b)
还有其他东西吗?
Is nor:
!(a or b)
!a or !b
!(a and b)
something else?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
!(a 或 b)
请参阅 http://en.wikipedia.org/wiki/Logical_NOR了解更多:
!(a or b)
see http://en.wikipedia.org/wiki/Logical_NOR for more:
您的第一个选择:
!
(a 或 b)恰好相当于 !a 和 !b
your first alternative:
!
(a or b)which happens to be equivalent to !a and !b
!(a或b)
!(a or b)
NOR(a, b)
被定义为NOT(OR(a, b))
,即中缀中的!(a or b)
符号。 根据德摩根定律,这也相当于(!a) 和 ( !b)
。NOR(a, b)
is defined to beNOT(OR(a, b))
which is!(a or b)
in infix notation. By De Morgan's Laws, this is also equivalent to(!a) and (!b)
.((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. :)