ちょっと、私は、式のパラメータでテンプレートクラスの定義を「オーバーロードする」ことができるかどうかを調べようとしています。次のコードスニペットのようなものです。テンプレートクラスの式のパラメータのオーバーロード
template<class T>
class Test
{
public:
T testvar;
Test()
{
testvar = 5;
cout << "Testvar: " << testvar << endl;
}
};
template<class T>
class Test<T, int num>
{
public:
T testvar;
Test()
{
testvar = 10;
cout << "Testvar: " << testvar << endl;
cout << "Param: " << num << endl;
}
};
ありがとうございます。
編集:記録のために、私はそれは明らかではなかった場合はC++でこれをやろうとしている... :)
ありがとう、それは私が探していたものでした。 – Morgan