我有以下代码:
Vec& Vec::operator+=(const double x) { return apply([x](double y) {return x + y;}); } Vec& Vec::operator-=(const double x) { return apply([x](double y) {return x - y;}); } Vec& Vec::operator*=(const double x) { return apply([x](double y) {return x * y;}); } Vec& Vec::operator/=(const double x) { return apply([x](double y) {return x / y;}); }
解决方法
是的,这很容易:
#define CREATE_OPERATOR(OP) \ Vec& Vec::operator OP##= (const double x) \ { return apply([x](double y) { return x OP y; }); } CREATE_OPERATOR(+) CREATE_OPERATOR(-) CREATE_OPERATOR(*) CREATE_OPERATOR(/)
当然,如果您需要多次重复使用此运算符符号列表,可以使用X macro技巧:
operators.hxx
OPERATOR(+) OPERATOR(-) OPERATOR(*) OPERATOR(/) #undef OPERATOR
你的代码
#define OPERATOR(OP) \ /* same as above */ #include "operators.hxx"