gpt4 book ai didi

c++ - Qt- Qlist 检查包含自定义类

转载 作者:太空狗 更新时间:2023-10-29 20:16:39 25 4
gpt4 key购买 nike

有没有办法覆盖加载自定义类的Qt QList 的比较机制。

即在 Java 中,您只需重写一个比较方法。

我有一个带有自定义类模型的 QList。

QList <CustomClass *>list;
CustomClass *c1=new CustomClass();
c1.name= "john";
list.append(c2);
CustomClass *c2=new CustomClass();
c2.name= "john";

qDebug()<<list.contains(c2); //false

//Secondly I have overridden the equals '==' operator and still getting false
qDebug()<< (c1 == c2); //false, why ?
qDebug()<< (c1->operator ==(*c2)); //true

class CustomClass
{
QString name;
bool operator==(const CustomClass& other)const
{
if(this->name==(other.name))
{
return true;
}
return false;
}
}

最佳答案

这一行:

qDebug()<< (c1 == c2); //false, why ? 

它是 false 因为您不是在比较实际实例,而是在比较指针。

试试这个:

qDebug()<< (*c1 == *c2);

关于c++ - Qt- Qlist 检查包含自定义类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8924606/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com