标签: c++ arrays templates
我有这段代码:
null === undefined
在g ++ 5.1.0下编译我收到以下错误:
template<char... c> struct StaticStringConst { const char cstr[] = {c...,0}; };
在我看来,我的阵列实际上从来都不是零......所以这里发生了什么?