我知道这在 C++03 中是不可能的,但我希望有一些新的巫毒教可以让我这样做。见下文:
template <class T>
struct Binder
{
template<typename FT, FT T::*PtrTomember>
void AddMatch();
};
struct TestType
{
int i;
};
int main(int argc, char** argv)
{
Binder<TestType> b;
b.AddMatch<int,&TestType::i>(); //I have to do this now
b.AddMatch<&TestType::i>(); //I'd like to be able to do this (i.e. infer field type)
}
有没有办法在 C++11 中做到这一点?decltype 有帮助吗?
** 更新:使用 Vlad 的示例我在想这样的事情会起作用(警告:我没有编译,因为我现在正在构建具有 decltype 支持的编译器)
template <class T>
struct Binder
{
template<typename MP, FT ft = decltype(MP)>
void AddMatch()
{
//static_assert to make sure MP is a member pointer of T
}
};
struct TestType
{
int i;
};
int main()
{
Binder<TestType> b;
b.AddMatch<&TestType::i>();
}
这行得通吗?