C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了c – Qt- Qlist检查包含Custom类大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法覆盖加载自定义类的Qt QList的比较机制.

即在java中,您只需要覆盖比较方法.

我正在使用我的customcatlass模型的QList.

QList <Customcatlass *>list;
Customcatlass *c1=new Customcatlass();
c1.name= "john";
list.append(c2); 
Customcatlass *c2=new Customcatlass();
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 Customcatlass
{
QString name;
 bool operator==(const customcatlass& other)const
{
    if(this->name==(other.Name))
    {
        return true;
    }
    return false;
}
}
@H_607_14@解决方法
这一行:

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

它是错误的,因为你不是在比较实际的实例,而是指针.

试试这个:

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

大佬总结

以上是大佬教程为你收集整理的c – Qt- Qlist检查包含Custom类全部内容,希望文章能够帮你解决c – Qt- Qlist检查包含Custom类所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。