C++ + 运算符的这种用法叫什么?目的是什么?

C++ What is this usage of the + operator called? and what is the purpose?

我最近在一个运算符重载评论中看到了一个例子,他们谈到 + 运算符本质上是一个有 2 个参数的函数。

经过一番探索,我决定更深入地研究一下,发现像调用函数一样调用 + 确实有效,只是不是您所期望的那样...例如:

int first = 6;
int second = 9;
int result = +(second,first);//result=6

此程序集是

int result = +(second,first);
mov         eax,dword ptr [first]  
mov         dword ptr [result],eax 

+ 的调用只是将最后一个参数移动到 eax 中。

谁能告诉我这个and/or它叫什么的目的?

表达式 +(second,first) 有两部分 - 两者都不是函数调用。

表达式(second, first)使用罕见的逗号运算符,它依次计算每个表达式,表达式的结果是最后一个 表达式求值。

本例中的 + 只是一元 + 运算符,例如 +5-8。所以你表达式的结果是6first.

的值

但是,您可以这样调用 operator +

int result = operator +(second, first);