+ 是一个binary operator ,declare的方法如下:
(下面转载自msdn microsoft)
ret-type operatorop( arg )
where ret-type is the return type, op is one of the operators listed in the preceding table, and arg is an argument of any type.
To declare a binary operator function as a global function, you must declare it in the form:
ret-type operatorop( arg1, arg2 )
where ret-type and op are as described for member operator functions and arg1 and arg2 are arguments. At least one of the arguments must be of class type.