加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
DateTimeUtil.h 589 Bytes
一键复制 编辑 原始数据 按行查看 历史
DESKTOP-2RNTUDO\HRX 提交于 2024-07-23 14:45 . 1、创建工程
#ifndef DATETIMEUTIL_H
#define DATETIMEUTIL_H
#include <QDateTime>
//将QTime转为时间戳计算时间差,适用于1970年后的日期计算,且时间差距不特别大
namespace DateTimeUtil
{
QTime sub(const QTime& time1, const QTime& time2);
QTime sub(const QTime& time1, const qint64& seconds);
QDate sub(const QDate& date1, const QDate& date2);
QDate sub(const QDate& date1, const qint64& seconds);
QDateTime sub(const QDateTime& time1, const QDateTime& time2);
QDateTime sub(const QDateTime& time1, const qint64& seconds);
}
#endif // DATETIMEUTIL_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化