C++的基础语法里提供了||
与&&
两个逻辑操作符还有,
(comma)运算符。在类中我们也可以重载这些操作符,但是不要这样做,我会在这篇文章中写出标准描述以及不能重载的原因。
概括来说,因为内置的||和&&具有短路求值语义,如果你自己重载了他们就变成了普通的函数调用,会具有与built-in ||
与&&
完全不同的语义。
而,操作符具有从左到右求值的语义,所以如果自己重载,会变成函数调用,也会具有不同于built-in的语义。
先来简单介绍一下C++中的逻辑运算符&&
与||
.但是这么基础的语法懒得介绍用法了,直接贴标准算了(ISO/IEC 14882:2014):
logical AND operator:The
&&
operator groups left-to-right. The operands are both contextually converted tobool
(Clause 4). The result istrue
if both operands aretrue
andfalse
otherwise. Unlike&
,&&
guarantees left-to-right evaluation: the second operand is not evaluated if the first operand isfalse
.
The result is abool
. If the second expression is evaluated, every value computation and side effect associated with the first expression is sequenced before every value computation and side effect associated with the second expression.
logical OR operator:The
||
operator groups left-to-right. The operands are both contextually converted tobool
(Clause 4). It returnstrue
if either of its operands istrue
, andfalse
otherwise. Unlike|
,||
guarantees left-to-right evaluation; moreover, the second operand is not evaluated if the first operand evaluates totrue
.
The result is abool
. If the second expression is evaluated, every value computation and side effect associated with the first expression is sequenced before every value computation and side effect associated with the second expression.
其实关于“为什么不能重载operator&&与operator||”最重要的就是以下两点:
- AND:If the second expression is evaluated, every value computation and side effect associated with the first expression is sequenced before every value computation and side effect associated with the second expression.
- OR:If the second expression is evaluated, every value computation and side effect associated with the first expression is sequenced before every value computation and side effect associated with the second expression.
这意味着&&
与||
具有短路求值性质:The operators &&
and ||
will not evaluate their second argument unless doing so is necessary.(TC++PL4th)
但是,如果重载了&&
与||
,则他们就变成了函数。所有实参在传递给形参的时候会被求值:
[ISO/IEC 14882:2014]All side effects of argument evaluations are sequenced before the function is entered.
而且,C++标准也明确说明了函数参数的求值顺序是不确定的。
[ISO/IEC 14882:2014 §8.3.6.9]The order of evaluation of function arguments is unspecified.
即,函数的实参在进入函数体之前副作用会被执行,也就违背了逻辑操作的短路求值性质,与built-in的语义有所冲突,所以不能重载&&
与||
。
看一下下面这个例子:
1 | int main() |
因为++a已经为true
所以++b
就不会再执行了,这也既是短路求值原则。
再看下面的代码:
1 | struct A{ |
这里在类A内重载了||
,所以++aobj||++b;
就变成了函数调用,来看其LLVM-IR代码:
1 | define i32 @main() #4 { |
请着重看这几行,这部分是++aobj||++b;
这一行所执行的操作:
1 | %3 = call dereferenceable(4) %struct.A* @_ZN1AppEv(%struct.A* %1) |
可能你会对_ZN1AppEv
和_ZN1AooIiEEbRT_
这样的名字产生疑虑,看起来像是函数调用,但是又分辨不出是哪一个函数调用,这部分的内容我详细地写在了我的另两篇文章中:C/C++编译和链接模型分析与为什么需要extern “C”?。
我们先直接来看一下_ZN1AppEv
和_ZN1AooIiEEbRT_
这两个符号所代表的信息:
1 | $ c++filt _ZN1AppEv |
根据两个符号在IR代码中的顺序可以知道,++aobj||++b;
所执行的顺序为:
- 先自增aobj
- 自增b
- 然后调用
A::operator||
。
这意味着不论++aobj
的结果如何++b
都会被执行,哪还有什么短路求值原则!而&&
也是同理。
下面来介绍为什么不能重载operator,
。
在C/C++中,,
运算符会从左到右地进行求值操作:
[ISO/IEC 14882:2014]A pair of expressions separated by a comma is evaluated left-to-right; the left expression is a discarded-value expression.
所以,如果重载operator,
会具有两个问题:
- 实参在进入函数体之前就已经求值完毕
- 重载
operator,
的求值顺序是不一定的
与built-in的,操作语义上有冲突,所以不能重载operator,
.
考虑下面的代码:
1 | struct A{ |
这里的aobj++,b=aobj.ival;
会调用类A的operator,
,即这是一个函数调用。
既然是函数调用就会遵循C++中对函数参数的求值原则:The order of evaluation of function arguments is unspecified.
未指定的,表示不会按照某种特定的顺序执行,所以在重载的operator,
中,右边的参数依赖左边的参数是未定义的行为。
不过我在主流的编译器中测试(GCC6.2/Clang 3.9)中测试均是按照参数列表的顺序来执行的,但这在C++标准中并无保证。
来看一下上面主函数的LLVM-IR代码:
1 | define i32 @main() #4 { |
编译器对aobj++,b=aobj.ival;
所执行的行为就是先执行aobj的operator++(int)
操作,再执行b=aobj.ival
的操作。
总的来说,虽然主流的C++编译器会实现这样的(类似built-in)行为,但是从C++标准来说,函数调用和built-in的operator,
是有区别的。