命名空间
变体
操作

标准库头文件 <iso646.h> (C95)

来自 cppreference.cn
< c‎ | 头文件

此头文件定义了 运算符的备选拼写 的宏。

[编辑] 概要

#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++ 中作为关键字存在,并且无条件可用。