我遇到以下代码的问题:
#include <deque>
#include <initializer_list>
#include <string>
struct EnumItem
{
inline operator int() const {
return id;
}
std::string name;
int id;
};
template <const std::initializer_list<EnumItem>& items>
class Enum
{
public:
private:
static const std::deque<EnumItem> _items;
};
template <const std::initializer_list<EnumItem>& items>
const std::deque<EnumItem> Enum<items>::_items{ items };
int main()
{
Enum<{{"0", 0}}> test;
return 0;
}
它没有编译,抛出了关于test
实例化的大量语法错误:
2>error C2059: syntax error : '{'
2>error C2143: syntax error : missing ';' before '{'
2>error C2143: syntax error : missing '>' before ';'
2>error C2976: 'Enum' : too few template arguments
2>: see declaration of 'Enum'
2>error C2447: '{' : missing function header (old-style formal list?)
2>error C2059: syntax error : '>'
我做错了什么,怎么做对了?
答案 0 :(得分:3)
FROM ruby:2.3-onbuild
不是可以与非类型模板参数一起使用的类型。在C ++ 14中,这些仅限于枚举,整数,各种指针,左值引用和initializer_list
。