环信 windows sdk类中的函数模板链接问题
截去一段代码
class EMAttributeValue
{
public:
EMAttributeValue();
...
template
bool is() const;
template
bool isType() const
{
return is();
}
template
T value() const;
...
};
函数模板声明和定义分开了,在使用这个类获取value的时候出现链接错误,VS2015的编译器。
class EMAttributeValue
{
public:
EMAttributeValue();
...
template
bool is() const;
template
bool isType() const
{
return is
}
template
T value() const;
...
};
函数模板声明和定义分开了,在使用这个类获取value的时候出现链接错误,VS2015的编译器。
没有找到相关结果
已邀请:
0 个回复