TestCase.h
class TestCase {
public:
template<size_t N> TestCase(int (&arr)[N]) {
// Constructor code here, I iterate over the array of values.
}
// etc
private:
int var1;
// etc
}
这是我的类头文件。该类使用模板接收任何大小的数组。这很好但我讨厌在.h文件中使用构造函数代码。如何将构造函数代码与其余成员函数一起移动到.cpp文件中?我不能使用矢量或任何东西。谢谢:))