名稱空間
變體
操作

標準庫標頭檔案 <iso646.h> (C95)

來自 cppreference.com

此標頭檔案定義了用於替代運算子拼寫的宏。

[編輯] 概要

#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++ 中作為關鍵字存在並無條件可用。