假设我有如下功能:
template<typename T> inline
typename std::enable_if<has_member_foo<T>::value,int>::type
foo( T const &t ) {
return t.foo();
}
template<typename T> inline
typename std::enable_if<!has_member_foo<T>::value,int>::type
foo( T const& ) {
return 0;
}
template<typename T> inline
int call_foo( T const &t ) {
return sizeof( T ) + foo( t );
}
这大部分工作正常,但如果我稍后为特定类型添加重载:
inline int foo( std::string const &s ) {
return s.size();
}
我在定义之后添加它call_foo()
,重载不被call_foo()
. 但是,如果我在 的定义之前移动重载代码call_foo()
,则会使用它。
为什么在第一种情况下不使用重载?当call_foo()
在代码的其他使用点实例化时,编译器已经看到了重载,那么为什么不使用它呢?
请注意,我的原始代码将foo()
函数作为模板foo_traits
类的静态成员函数,同样使用enable_if
. 该代码有效,即模板类特化,即使在使用之后 call_foo()
提供,那么为什么不用于独立的重载函数呢?
如果重要的话,我g++
在 Mac OS X 10.7.4 上使用 4.6。