class MyClass { public: int a; bool operator<(const MyClass other) const { return a<other.a; } .... }; .... QList<MyClass*> list;
解决方法
制作自己的比较器,这将使用指针,然后使用qSort:
http://qt-project.org/doc/qt-5.1/qtcore/qtalgorithms.html#qSort-3
class MyClass { public: int a; bool operator<(const MyClass other) const { return a<other.a; } .... }; .... QList<MyClass*> list;