c中的and,not等逻辑运算符

c语言中本身的逻辑运算符为 ! != && 等
在C99规范中,引入iso646头文件可以像python一样使用 and not 作为逻辑符号
其原理很简单,为宏定义的方式将and等词定义为相关的逻辑运算符
需要注意的是
虽然宏定义方式为直接替换
但 !x 不能写成 notx 的方式 必须加空格予以区分,不然编译器会认为notx为一个变量而编译不通过

iso646头文件内容

include<iso646.h>

define and &&

define and_eq &=

define bitand &

define bitor |

define compl ~

define not !

define not_eq !=

define or ||

define or_eq |=

define xor ^

define xor_eq ^=

posted @ 2020-07-28 16:02  bean_boom  阅读(1663)  评论(0编辑  收藏  举报