QList<QextPortInfo> newPortInfo;在执行上述代码时,出现了
QList<QextPortInfo> currPortInfo;
if(newPortInfo==currPortInfo){}
请问各位大神怎么破?
------解决方案--------------------
你的QextPortInfo实现了==操作符的重载了吗
------解决方案--------------------
bool QextPortInfo::operator==(const QextPortInfo &other)
{
//在这里陈述下newPortInfo和currPortInfo为什么相等
}