struct
可変個引数テンプレートを使用して、テンプレートパラメータとしてに渡される要素の数をカウントするTMPを作成しています。これは私のコードです:
template<class T, T... t>
struct count;
template<class T, T h, T... t>
struct count<T, h, t...>{
static const int value = 1 + count<T, t...>::value;
};
template<class T>
struct count<T>{
static const int value = 0;
};
template<>
struct count<std::string, std::string h, std::string... l>{
static const int value = 1 + count<std::string, l...>::value;
};
template<>
struct count<std::string>{
static const int value = 0;
};
int main(){
std::cout << count<int, 10,22,33,44,56>::value << '\n';
std::cout << count<bool, true, false>::value << '\n';
std::cout << count<std::string, "some">::value << '\n';
return 0;
}
を教えてくれるので、 count
withの3番目のインスタンス化でエラーが発生します。これに対する回避策はありますか?std::string
g++ 4.7
error: ‘class std::basic_string<char>’ is not a valid type for a template non-type parameter