我想将一些东西包装在一个简单的模板类中:
template <int dim>
class internal {
static unsigned int table[dim][dim];
};
并为不同的模板化参数填写表格:
template <>
unsigned int
internal<1>::table[1][1] = {{0}};
template<>
unsigned int
internal<2>::table[2][2] =
{{0, 1},
{2, 3}
};
但我遇到了重复符号问题:
12 duplicate symbols for architecture x86_64
出了点问题,但是什么?p/s/ 快速搜索主题并不能缓解类似问题。