gpt4 book ai didi

qt - 如何对 QDateTime* 的 QList 进行排序?

转载 作者:行者123 更新时间:2023-12-01 23:31:49 26 4
gpt4 key购买 nike

如何按 QDateTime 对象的值对 QDateTime* 对象的 QList 进行排序?

最佳答案

您可以使用qSort使用您自己的比较函数:

#include <QtAlgorithms>

bool dtcomp(QDateTime* left, QDateTime *right) {
return *left < *right;
}

QList<DateTime*> dtlist = ...;
qSort(dtlist.begin(), dtlist.end(), dtcomp);

关于qt - 如何对 QDateTime* 的 QList 进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5697505/

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