QT判断两个日期时间的大小

qt判断两个日期大小不能转成int,因为日期过大时会超出int范围。

int 范围:-2,147,483,648 到 2,147,483,647

uint范围:0~4294967295

    int a = 2147483648;
    qDebug() << a;//-2147483648
 
    QDateTime time = QDateTime::fromTime_t(2147483647);
    QString dateStr = time.toString("yyyy-MM-dd hh:mm:ss");
    qDebug() << dateStr;//"2038-01-19 11:14:07"

int 最大范围值存放以上时间后的值是错误的。

以下为在网上搜到的比较方法:是错误的

QT判断两个日期时间的大小

错误示范

Qt 可直接将QDateTime转换成相同格式QString进行比较:

QString endDate = date.toString("yyyy-MM-dd");
QString currentDate = QDateTime::currentDateTime().toString("yyyy-MM-dd");
if (endDate < currentDate)
{
    qDebug()<<"已过期";
}

到此这篇关于QT判断两个日期时间的大小的文章就介绍到这了,更多相关QT日期大小内容请搜索aitechtogether.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持aitechtogether.com!

共计人评分,平均

到目前为止还没有投票!成为第一位评论此文章。

(0)
扎眼的阳光的头像扎眼的阳光普通用户
上一篇 2023年5月13日
下一篇 2023年5月13日

相关推荐

此站出售,如需请站内私信或者邮箱!