QDateTime 使用

        QDateTime 是 Qt 框架中用于处理日期和时间的类。本篇文章详细介绍、通过示例 快速了解QDateTime的各种操作,包括: 当前时间、获取日期和时间、获取日期、获取时间、获取时间戳、格式化输出、年、月、日、QTime时间、获取微妙、操作日期和时间、添加时间、减去时间、指定时间、比较时间、时区处理、设置时区、查询时区、常用时区、转换时区、有效性等操作

转载请附上文章出处与本文链接。

QDateTime 使用详解目录

1 当前时间

2 获取日期和时间

2.1 获取日期

2.2 获取时间

2.3 获取时间戳

3 格式化输出

3.1 字符串

3.2 年

3.3 月

3.4 日

3.5 其它

4 QTime

4.1 获取年月日

4.2 获取微妙

5 操作日期和时间

5.1 添加时间

5.2 减去时间

5.3 指定时间

6 比较时间

7 时区处理

7.1 设置时区

7.2 查询时区

7.3 常用时区

7.4 转换时区

8 有效性

9 .h源文件

10 .cpp

1 当前时间
    QDateTime currentDateTime = QDateTime::currentDateTime();
 
    qDebug() << currentDateTime;    
 
    //QDateTime(2024-10-08 01:36:56.886 中国标准时间 Qt::LocalTime)
2 获取日期和时间
2.1 获取日期
    QDate date = currentDateTime.date();
 
    qDebug() << date;
 
    QDate("2024-10-08")
2.2 获取时间
    QTime time = currentDateTime.time();
 
    qDebug() << time;
 
    QTime("01:50:30.786")
2.3 获取时间戳
    qint64 timestamp = currentDateTime.toMSecsSinceEpoch();
 
    qDebug() << timestamp;
 
    1728323430786
 
 
 
 
    QDateTime dateTime;
    dateTime.setMSecsSinceEpoch(timestamp);
    dateTime.toString("yyyy-MM-dd hh:mm:ss");
3 格式化输出
3.1 字符串
    QString formattedString = currentDateTime.toString("yyyy-MM-dd HH:mm:ss zzz");
 
    qDebug() << formattedString;
 
    "2024-10-08 01:54:59 638"
3.2 年
    //年
    formattedString = currentDateTime.toString("yyyy");
 
    qDebug() << formattedString;
3.3 月
    //月
    formattedString = currentDateTime.toString("MM");
 
    qDebug() << formattedString;
3.4 日
    //日
    formattedString = currentDateTime.toString("dd");
 
    qDebug() << formattedString;
3.5 其它
// 时、分、秒、毫秒 同上
4 QTime
4.1 获取年月日
    int year = currentDateTime.date().year();   // 获取年份
 
    int month = currentDateTime.date().month(); // 获取月份
 
    int day = currentDateTime.date().day();     // 获取日期
 
    qDebug() << "年:" << year << "月:" << month << "日:" << day;
 
    年: 2024 月: 10 日: 8
4.2 获取微妙
    QTime time = currentDateTime.time();
 
    int milliseconds = time.msec(); // 获取毫秒
 
    int microseconds = milliseconds * 1000; // 转换为微秒
 
    qDebug() << "微秒:" << microseconds;
 
    微秒: 244000
5 操作日期和时间
5.1 添加时间
    //添加时间:
    QDateTime futureDateTime = currentDateTime.addDays(5); // 添加5天
 
    qDebug() << futureDateTime;
 
    QDateTime(2024-10-13 02:07:11.244 中国标准时间 Qt::LocalTime)
5.2 减去时间
    //减去时间:
    QDateTime pastDateTime = currentDateTime.addMonths(-1); // 减去1个月
 
    qDebug() << pastDateTime;
 
    QDateTime(2024-09-08 02:07:11.244 中国标准时间 Qt::LocalTime)
5.3 指定时间
    QDateTime specificDateTime(QDate(2023, 10, 1), QTime(12, 30, 0));
 
    qDebug() << specificDateTime;    
 
    //QDateTime(2023-10-01 12:30:00.000 中国标准时间 Qt::LocalTime)
6 比较时间
    //比较两个 QDateTime 对象:
    if (currentDateTime < specificDateTime)
    {
        // currentDateTime 早于 specificDateTime
    }
7 时区处理
7.1 设置时区
    QTimeZone timeZone("Asia/Shanghai");
 
    QDateTime dateTimeInZone = currentDateTime.toTimeZone(timeZone);
7.2 查询时区
    // 获取所有可用的时区 ID
    QStringList timeZoneIds = QTimeZone::availableTimeZoneIds();
 
    // 打印所有时区 ID
    foreach (const QString &id, timeZoneIds)
    {
        qDebug() << id;
    }
7.3 常用时区
UTC:协调世界时
 
Asia/Shanghai:中国标准时间
 
America/New_York:东部标准时间
 
Europe/London:格林威治标准时间
 
Asia/Tokyo:日本标准时间
7.4 转换时区
QDateTime utcDateTime = currentDateTime.toUTC();
8 有效性
    //检查有效性:
    if (currentDateTime.isValid())
    {
        // 当前时间有效
    }
9 .h源文件
#pragma once
 
#include <QtWidgets/QMainWindow>
#include "ui_QDateTimeTest.h"
 
#include <QDebug>
#include <QDateTime>
#include <QTimeZone>
#pragma execution_character_set("utf-8")
class QDateTimeTest : public QMainWindow
{
    Q_OBJECT
 
public:
    QDateTimeTest(QWidget *parent = nullptr);
    ~QDateTimeTest();
 
private:
    Ui::QDateTimeTestClass ui;
};

10 .cpp
#include "QDateTimeTest.h"
 
QDateTimeTest::QDateTimeTest(QWidget *parent)
    : QMainWindow(parent)
{
    ui.setupUi(this);
 
    QDateTime currentDateTime = QDateTime::currentDateTime();
    qDebug() << currentDateTime;    //QDateTime(2024-10-08 01:36:56.886 中国标准时间 Qt::LocalTime)
 
 
    ///@ 获取日期和时间
    qDebug() << "获取日期和时间";
 
    //获取日期:
    QDate date = currentDateTime.date();
    qDebug() << date;
 
    //获取时间:
    QTime time = currentDateTime.time();
    qDebug() << time;
 
    //获取时间戳:
    qint64 timestamp = currentDateTime.toMSecsSinceEpoch();
    qDebug() << timestamp;
 
    ///@ 格式化输出
    qDebug() << "格式化输出";
 
    //格式化为字符串:
    QString formattedString = currentDateTime.toString("yyyy-MM-dd HH:mm:ss zzz");
    qDebug() << formattedString;
 
    //年
    formattedString = currentDateTime.toString("yyyy");
    qDebug() << formattedString;
 
    //月
    formattedString = currentDateTime.toString("MM");
    qDebug() << formattedString;
 
    //日
    formattedString = currentDateTime.toString("dd");
    qDebug() << formattedString;
 
    // 时、分、秒、毫秒类似
 
 
 
    ///@ QTime
 
 
 
    int year = currentDateTime.date().year();   // 获取年份
    int month = currentDateTime.date().month(); // 获取月份
    int day = currentDateTime.date().day();     // 获取日期
 
    qDebug() << "年:" << year << "月:" << month << "日:" << day;
 
 
    time = currentDateTime.time();
    int milliseconds = time.msec(); // 获取毫秒
    int microseconds = milliseconds * 1000; // 转换为微秒
    qDebug() << "微秒:" << microseconds;
 
 
    ///@ 操作日期和时间
    qDebug() << "操作日期和时间";
 
    //添加时间:
    QDateTime futureDateTime = currentDateTime.addDays(5); // 添加5天
    qDebug() << futureDateTime;
 
    //减去时间:
    QDateTime pastDateTime = currentDateTime.addMonths(-1); // 减去1个月
    qDebug() << pastDateTime;
 
 
 
 
    QDateTime specificDateTime(QDate(2023, 10, 1), QTime(12, 30, 0));
 
    qDebug() << specificDateTime;    //QDateTime(2023-10-01 12:30:00.000 中国标准时间 Qt::LocalTime)
 
 
 
    ///@ 比较
 
    //比较两个 QDateTime 对象:
    if (currentDateTime < specificDateTime)
    {
        // currentDateTime 早于 specificDateTime
    }
 
 
 
 
    ///@ 时区处理
 
    //设置时区:
    QTimeZone timeZone("Asia/Shanghai");
    QDateTime dateTimeInZone = currentDateTime.toTimeZone(timeZone);
 
    //获取时区:
    QTimeZone currentZone = currentDateTime.timeZone();
 
    ///@ 其他方法
 
    //检查有效性:
    if (currentDateTime.isValid())
    {
        // 当前时间有效
    }
 
    //转换为 UTC:
    QDateTime utcDateTime = currentDateTime.toUTC();
 
}
 
QDateTimeTest::~QDateTimeTest()
{
 
 
 
}
————————————————

                            版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
                        
原文链接:https://blog.csdn.net/qq_37529913/article/details/142749502

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/59813.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

随机采样之接受拒绝采样

之前提到的逆变换采样&#xff08;Inverse Transform Sampling&#xff09;是一种生成随机样本的方法&#xff0c;它利用累积分布函数&#xff08;CDF&#xff09;的逆函数来生成具有特定分布的随机变量。以下是逆变换采样的缺点&#xff1a; 计算复杂性&#xff1a;对于某些分…

用 Python 爬取淘宝商品价格信息时需要注意什么?

用 Python 爬取淘宝商品价格信息时&#xff0c;需要注意以下方面&#xff1a; 一、法律和道德规范&#xff1a; 遵守法律法规&#xff1a;网络爬虫的行为应在法律允许的范围内进行。未经淘宝平台授权&#xff0c;大规模地爬取其商品价格信息并用于商业盈利等不当用途是违法的…

免费数据集网站

1、DataSearch https://datasetsearch.research.google.comhttp://DataSearch 2、FindData findata-科学数据搜索引擎https://www.findata.cn/ 3、Kaggle Kaggle: Your Machine Learning and Data Science CommunityKaggle is the world’s largest data science community …

在 FPGA 中实现 `tanh` 和 Softplus 函数

✅作者简介&#xff1a;2022年博客新星 第八。热爱国学的Java后端开发者&#xff0c;修心和技术同步精进。 &#x1f34e;个人主页&#xff1a;Java Fans的博客 &#x1f34a;个人信条&#xff1a;不迁怒&#xff0c;不贰过。小知识&#xff0c;大智慧。 &#x1f49e;当前专栏…

基于java+SpringBoot+Vue的旅游管理系统设计与实现

项目运行 环境配置&#xff1a; Jdk1.8 Tomcat7.0 Mysql HBuilderX&#xff08;Webstorm也行&#xff09; Eclispe&#xff08;IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持&#xff09;。 项目技术&#xff1a; Springboot mybatis Maven mysql5.7或8.0等等组成&#x…

C++ 并发专题 - 条件变量的使用

一&#xff1a;概述&#xff1a; 在 C 中&#xff0c;条件变量&#xff08;std::condition_variable&#xff09;是一种用于线程间同步的机制&#xff0c;主要用于在多线程环境中让一个线程等待某个条件满足后再继续执行。条件变量通常配合互斥锁&#xff08;std::mutex&#…

【Python TensorFlow】入门到精通

TensorFlow 是一个开源的机器学习框架&#xff0c;由 Google 开发&#xff0c;广泛应用于机器学习和深度学习领域。本篇将详细介绍 TensorFlow 的基础知识&#xff0c;并通过一系列示例来帮助读者从入门到精通 TensorFlow 的使用。 1. TensorFlow 简介 1.1 什么是 TensorFlow…

数据库管理-第258期 23ai:Oracle Data Redaction(20241104)

数据库管理258期 2024-11-04 数据库管理-第258期 23ai&#xff1a;Oracle Data Redaction&#xff08;20241104&#xff09;1 简介2 应用场景与有点3 多租户环境4 特性与能力4.1 全数据编校4.2 部分编校4.3 正则表达式编校4.4 随机编校4.5 空值编校4.6 无编校4.7 不同数据类型上…

基于SpringBoot的医药管理系统+LW示例参考

1.项目介绍 系统角色&#xff1a;管理员、收银员功能模块&#xff1a;管理员&#xff08;收银员信息管理、药品管理、药品类别、出库信息管理、入口信息。药品库存图表&#xff09;、收银员&#xff08;药品库存图表、会员积分信息等&#xff09;技术选型&#xff1a;SpringBo…

获取服务器相关信息

获取主机厂商型号信息&#xff0c;如有需要&#xff0c;可以根据获取到的厂商型号&#xff0c;去官网获取产品规格书 sudo dmidecode -t system# dmidecode 3.2 Getting SMBIOS data from sysfs. SMBIOS 3.2.0 present.Handle 0x0001, DMI type 1, 27 bytes System Informatio…

经典的ORACLE 11/12/19闪回操作

1、闪回表 SQL> show parameter recycle NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ buffer_pool_recycle string db_recycle_cache_size …

PH热榜 | 2024-11-07

DevNow 是一个精简的开源技术博客项目模版&#xff0c;支持 Vercel 一键部署&#xff0c;支持评论、搜索等功能&#xff0c;欢迎大家体验。 在线预览 1. SWE-Kit 标语&#xff1a;打造你自己的“德文”——一个像软件工程师一样的智能助手&#xff01; 介绍&#xff1a;SWE-K…

注册了个域名Wordpress.cn.com

wordpress.cn.com 这个域名一看是很山寨的&#xff01; 我玩wordpress比较多&#xff0c;所以就想有一个wordpress之类的域名拿着耍耍&#xff0c;就像我的typecho.pro之类的那样&#xff0c;所以就想着 wp/wordpress之类的类型选一个&#xff0c;看了不少国别和新后缀&…

浏览器内置对象XMLHttpRequest

XMLHttpRequest 是浏览器提供的一个内置对象&#xff0c;用于在客户端和服务器之间进行异步通信。它是一种由浏览器提供的 JavaScript API&#xff08;应用程序编程接口&#xff09;&#xff0c;开发者可以通过 JavaScript 代码来使用它。通过 XMLHttpRequest&#xff0c;开发者…

(蓝桥杯C/C++)——基础算法(下)

目录 一、时空复杂度 1.时间复杂度 2.空间复杂度 3.分析技巧 4.代码示例 二、递归 1.递归的介绍 2.递归如何实现 3.递归和循环的比较 4.代码示例 三、差分 1.差分的原理和特点 2.差分的实现 3.例题讲解 四、枚举 1.枚举算法介绍 2.解空间的类型 3. 循环枚举解…

echarts功能五 --geo地理组件、VisualMap图例组件

利用geoJson文件生成geo地理组件&#xff0c;如下图所示&#xff1a; 三个颜色区域分别代表了3个区域图层&#xff1b;淡蓝色代表了线条&#xff1b;正中心是geo地理组件&#xff1b;右下角展示图例&#xff0c;是VisualMap视觉映射组件。 共包含以下功能&#xff1a; &#…

WordCloudStudio:AI生成模版为您的文字云创意赋能 !

在信息泛滥的时代&#xff0c;如何有效地将文字内容变成生动的视觉元素&#xff1f;WordCloudStudio为您提供了答案。无论您是市场营销专家、教育工作者、数据分析师&#xff0c;还是创意设计师&#xff0c;WordCloudStudio都能帮助您轻松创建引人注目的文字云。更重要的是&…

25-RVIZ CARLA插件

RVIZ插件(RVIZ plugin)提供了一个基于RVIZ(RVIZ) ROS包的可视化工具。 用RVIZ运行ROS桥接 RVIZ插件需要一个名为ego_vehicle的自车。要查看ROS-bridge使用RVIZ的示例&#xff0c;请在运行CARLA服务器的情况下执行以下命令&#xff1a; 1. 启用RVIZ启动ROS桥接&#xff1a; # …

FP7209单节锂电升压恒流80V,PWM控制调光调色应急电源驱动方案,支持LED开路保护、LED短路保护、开关NMOS过电流保护、过温保护、过热保护

FP7209是针对LED驱动器的升压拓扑开关调节器。它提供了内置的门驱动销&#xff0c;用于驱动外部N-MOSFET。误差放大器的非反相输入端连接到一个0.25V的参考电压。如UVP、OVP、OCP等&#xff0c;保护系统电路有三个功能。LED电流可以通过一个连接到DIM针脚的外部信号来调整。DIM…

Spring JDBC模板

Spring JDBC模板&#xff08;JdbcTemplate&#xff09;是Spring框架提供的一个简化JDBC操作的工具类。它封装了JDBC的常见操作&#xff0c;如查询、更新、插入和删除等&#xff0c;简化了数据库访问代码&#xff0c;减少了样板代码。下面是一个详细的示例&#xff0c;展示如何使…