目录

在c++使用and替代&&

在c++使用and替代&&

背景

​ 在之前的一个项目中发现使用了 and 替代 &&,当时感觉很奇怪,c++有这样的用法吗?

编译没有问题,发现是c++的替代标记。

用法来源

维基百科搜索C替代标记。解释的很清楚。如果不能科学上网,我这里给出一些解释。

C替代标记指一批C语言常见运算符的可选拼写。它们实现为C标准库中iso646.h头文件内的一组宏定义。此标记作为C90标准的修正案于1995年增补。

替代标记允许程序员使用C语言按位和逻辑运算符,原先的标记在一些国际和非QWERTY键盘上很难输入。根据ISO/IEC 646标准实现的头文件有一些区域性的变化,其中一些用重音字符替换了C运算符使用的标点符号。

iso646.h中定义了11个宏:

https://cdn.jsdelivr.net/gh/xinqinew/pic@main/img/20210727173219154.png

在c++中上述标识符是运算符,因此不需要包含头文件。iso646.h的主要内容为

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#ifndef __ISO646_H
#define __ISO646_H
 
#ifndef __cplusplus
#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 ^=
#endif
 
#endif /* __ISO646_H */

参考链接

【1】https://en.cppreference.com/w/cpp/language/operator_alternative

【2】https://zh.wikipedia.org/wiki/C%E6%9B%BF%E4%BB%A3%E6%A0%87%E8%AE%B0