在阅读了Matthieu 的回答后,我决定自己尝试一下。
我的尝试无法编译,因为 SFINAE 没有启动并剔除has_foo
尝试访问T::foo
.
error: ‘struct Bar’ has no member named ‘foo’
我错过了什么,还是我试图以这种方式做不到?
(我使用的是 gcc-4.7.2)
完整示例如下:
#include <iostream>
// culled by SFINAE if foo does not exist
template<typename T>
constexpr auto has_foo(T& t) -> decltype((void)t.foo, bool())
{
return true;
}
// catch-all fallback for items with no foo
constexpr bool has_foo(...)
{
return false;
}
//-----------------------------------------------------
template<typename T, bool>
struct GetFoo
{
static int value(T& t)
{
return t.foo;
}
};
template<typename T>
struct GetFoo<T, false>
{
static int value(T&)
{
return 0;
}
};
//-----------------------------------------------------
template<typename T>
int get_foo(T& t)
{
return GetFoo<T, has_foo(t)>::value(t);
}
//-----------------------------------------------------
struct Bar
{
int val;
};
int main()
{
Bar b { 5 };
std::cout << get_foo(b) << std::endl;
return 0;
}