假设我有一个结构(在现实生活中,这是一个自动机):
struct automaton
{
bool get_final() const { return final; }
void set_final() { final = true; }
bool final = false;
};
为此,我想提供一个可以看到它转置(iow、反转或镜像)的视图。因为我有不止一个automaton
类,我有一个类模板来包装我的自动机(我真的想要组合,而不是继承),并将所有函数调用反弹到包装的自动机,颠倒需要的东西。为了简单起见,在这里,它只是转发呼叫。
用手,我会得到
template <typename Aut>
struct transposed_by_hand
{
Aut& aut;
auto get_final() const -> bool
{
return aut.get_final();
}
auto set_final() -> void
{
aut.set_final();
}
};
但是有很多函数,我不想在包装器中硬编码这么多信息(函数签名)。多亏了可变参数模板和对传入参数的完美转发,decltype
对于结果,很容易有一个宏来分解所有 const 成员函数的定义,而另一个宏则用于非常量成员函数(不同之处在于const
)。基本上,在这种情况下,它归结为:
template <typename Aut>
struct transposed_with_decltype
{
Aut& aut;
auto get_final() const -> decltype(aut.get_final())
{
return aut.get_final();
}
auto set_final() -> decltype(aut.set_final())
{
aut.set_final();
}
};
这适用于非常量自动机,但如果我包装一个 const 自动机就会中断:
int main()
{
const automaton aut;
transposed_by_hand<const automaton> trh = { aut };
transposed_with_decltype<const automaton> trd = { aut };
}
我的编译器抱怨(G++ 4.9):
f.cc: In instantiation of 'struct transposed_with_decltype<const automaton>':
f.cc:44:49: required from here
f.cc:34:12: error: passing 'const automaton' as 'this' argument of 'void automaton::set_final()' discards qualifiers [-fpermissive]
auto set_final() -> decltype(aut.set_final())
^
和(Clang++ 3.3):
f.cc:42:23: error: default initialization of an object of const type 'const automaton' requires a user-provided default constructor
const automaton aut;
^
f.cc:34:36: error: member function 'set_final' not viable: 'this' argument has type 'const automaton', but function is not marked const
auto set_final() -> decltype(aut.set_final())
^~~
f.cc:44:49: note: in instantiation of template class 'transposed_with_decltype<const automaton>' requested here
transposed_with_decltype<const automaton> trd = { aut };
^
f.cc:6:12: note: 'set_final' declared here
void set_final() { final = true; }
^
2 errors generated.
他们是对的!中的表达式decltype
打破了包装自动机的 const-ness。然而,我发誓我不会使用这个功能。就像我不会使用手工包裹的相应的一样。
所以我的问题是:有没有办法编写包装的定义,set_final
这样我就不必拼出它的签名(输入和输出)?我曾尝试使用std::enable_if
,但它对这里的问题没有任何改变。无论如何,它需要编译器是惰性的,并且接受不评估第二个参数std::enable_if
是否不需要......
template <typename Aut>
struct transposed_with_decltype
{
Aut& aut;
auto get_final() const -> decltype(aut.get_final())
{
return aut.get_final();
}
auto set_final() -> typename std::enable_if<!std::is_const<Aut>::value,
decltype(aut.set_final())>::type
{
aut.set_final();
}
};
提前致谢。