我的代码是:
std::vector<double> Vec;
template<typename T>
void GetObj(VARIANT &vtProp)
{
CComSafeArray<T> SafeArray;
SafeArray.Attach(vtProp.parray);
ULONG Count = SafeArray.GetCount();
Vec.resize(Count);
for(ULONG Index = 0; Index < Count; Index++)
{
Vec[Index] = SafeArray[Index];
}
}
编译时我收到以下错误:
error C2783: 'void __cdecl GetObj(struct tagVARIANT &)' : could not deduce template argument for 'T'
请建议我正确答案
答案 0 :(得分:7)
函数模板的签名中没有任何内容允许编译器推导出模板类型,所以你需要明确:
GetObj<TheActualType>(arg);