此头文件定义了用于替代运算符拼写的宏。
[编辑] 概要
#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 ^=
[编辑] 注意
此头文件在 C++ 中没有意义,因为这些宏名称在 C++ 中作为关键字存在并无条件可用。