有时我发现自己编写了非常简单的包装器,其中包装器方法直接对应于改编类的一种方法,即:
class ToBeAdapted
{
public:
void a();
void b(int arg);
};
class Wrapper
{
public:
void newA()
{
_adapted.a();
}
void newB(int arg)
{
_adapted.b(arg);
}
private:
ToBeAdapted _adapted;
};
这可能(通常使用模板魔术和/或暗预处理器仪式吗?)可以稍微概括一下,只是为了节省写入时间并使以后更容易切换包装器界面?
这样的事情很酷:
wrap_around<ToBeAdapted>(ToBeAdapted::a, newA, ToBeAdapted::b,newB) Wrapper; //Creates the same wrapper class as specified above.
答案 0 :(得分:2)
考虑使用私有继承:
class Wrapper : ToBeAdapted
{
public:
void newA() { a(); }
void newB(int arg) { b(arg); }
};