如果一个类有一个像这样的特殊成员函数,我会尝试专门化一个模板(在另一个例子中找到):
template <typename T>
class has_begin
{
typedef char one;
typedef long two;
template <typename C> static one test( decltype( &C::AnyFunc) ) ;
template <typename C> static two test(...);
public:
enum { value = sizeof(test<T>(0)) == sizeof(char) };
enum { Yes = sizeof(has_begin<T>::test<T>(0)) == 1 };
enum { No = !Yes };
};
这AnyFunc
在重载之前运行良好:
class B : public vector<int>
{
public:
void AnyFunc() const;
void AnyFunc();
};
如何重写我的测试代码以从我的模板中获得“是”?