当前位置:  开发笔记 > 编程语言 > 正文

C++宏元编程

如何解决《C++宏元编程》经验,为你挑选了2个好方法。

我有以下代码:

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;});
}

这些方法仅在运算符符号上有所不同.有没有办法简化使用宏编写这些方法?



1> Reinstate Mo..:

是的,这很容易:

#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宏技巧:

operators.hxx

OPERATOR(+)
OPERATOR(-)
OPERATOR(*)
OPERATOR(/)

#undef OPERATOR

你的代码

#define OPERATOR(OP) \
  /* same as above */

#include "operators.hxx"



2> Lightness Ra..:

看起来很琐碎?

#define D(O) \
    Vec& Vec::operator O ## = (const double x) \
    { return apply([x](double y) {return x O y;}); }

D(+)
D(-)
D(*)
D(/)

#undef

##"胶水"的说法的=,你需要的,因为+=,-=等等都是原子令牌.其余的都是由宏的魔力处理.

(证明它编译)

顺便说一句,你所有的操作员都错了; 他们应该读y O x,而不是x O y.

推荐阅读
周扒pi
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有