あるタイプ(たとえばdouble)のテンプレートメンバー関数を特殊化する必要があります。クラスX
自体がテンプレートクラスではない場合は正常に機能しますが、テンプレートにすると、GCCがコンパイル時エラーを出し始めます。
#include <iostream>
#include <cmath>
template <class C> class X
{
public:
template <class T> void get_as();
};
template <class C>
void X<C>::get_as<double>()
{
}
int main()
{
X<int> x;
x.get_as();
}
これがエラーメッセージです
source.cpp:11:27: error: template-id
'get_as<double>' in declaration of primary template
source.cpp:11:6: error: prototype for
'void X<C>::get_as()' does not match any in class 'X<C>'
source.cpp:7:35: error: candidate is:
template<class C> template<class T> void X::get_as()
どうすればそれを修正できますか?ここでの問題は何ですか?
前もって感謝します。