我需要您的帮助来参数化具有 int 值的模板。
这就是它的样子:
SpriteSwitcher.h:
template<int N >
bool initWithFilesArray(std::string (&fileNames)[N],int width, const CCPoint position);
SpriteSwitcher.cpp:
template<int N >
bool SpriteSwitcher::initWithFilesArray(std::string (&fileNames)[N], int width, const CCPoint position)
{
return true;
}
然后我尝试用我的 initWithFileArray 函数初始化 SpriteSwitcher 类
std::string g[2] = {"hello", "world"};
SpriteSwitcher *s = new SpriteSwitcher();
s->initWithFilesArray(g, visibleSize.width, origin);
我收到以下错误:
错误 lnk2019 未解析的外部符号 ""public: bool __thiscall SpriteSwitcher::initWithFilesArray<2>(class std::basic_string,class std::allocator > (&)[2],int,class cocos2d::CCPoint)" (?? $initWithFilesArray@$01@SpriteSwitcher@@QAE_NAAY01V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HVCCPoint@cocos2d@@@Z)" in Funktion ""public : 虚拟布尔 __thiscall MenuScreen::init(void)" (?init@MenuScreen@@UAE_NXZ)"。
谁能帮帮我,告诉我问题出在哪里?