integer および/または double 用の特定の関数が必要な入力チェッカーを構築しています (たとえば、'isPrime' は整数に対してのみ使用可能にする必要があります)。
パラメータとして使用enable_if
している場合、完全に機能しています:
template <class T>
class check
{
public:
template< class U = T>
inline static U readVal(typename std::enable_if<std::is_same<U, int>::value >::type* = 0)
{
return BuffCheck.getInt();
}
template< class U = T>
inline static U readVal(typename std::enable_if<std::is_same<U, double>::value >::type* = 0)
{
return BuffCheck.getDouble();
}
};
しかし、テンプレートパラメーターとして使用している場合(http://en.cppreference.com/w/cpp/types/enable_ifで示されているように)
template <class T>
class check
{
public:
template< class U = T, class = typename std::enable_if<std::is_same<U, int>::value>::type >
inline static U readVal()
{
return BuffCheck.getInt();
}
template< class U = T, class = typename std::enable_if<std::is_same<U, double>::value>::type >
inline static U readVal()
{
return BuffCheck.getDouble();
}
};
次に、次のエラーがあります。
error: ‘template<class T> template<class U, class> static U check::readVal()’ cannot be overloaded
error: with ‘template<class T> template<class U, class> static U check::readVal()’
2番目のバージョンで何が問題なのかわかりません。