码迷,mamicode.com
首页 > 其他好文 > 详细

Qt 实时显示系统时间

时间:2020-12-02 12:11:23      阅读:4      评论:0      收藏:0      [点我收藏+]

标签:slots   jsb   http   size   connect   new   update   blog   ast   

前言

我们用一个label控件来实时显示系统时间,用到 QTimer 和 QDateTime 这个两个类。

正题

头文件:

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
 
#include <QMainWindow>
#include <QTimer>
#include <QDateTime>
 
namespace Ui {
class MainWindow;
}
 
class MainWindow : public QMainWindow
{
    Q_OBJECT
 
public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();
 
private:
    Ui::MainWindow *ui;
 
public slots:
    void timerUpdate(void);
};
 
#endif // MAINWINDOW_H

实现函数:

#include "mainwindow.h"
#include "ui_mainwindow.h"
 
MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    QTimer *timer = new QTimer(this);
    connect(timer,SIGNAL(timeout()),this,SLOT(timerUpdate()));
    timer->start(1000);
}
 
MainWindow::~MainWindow()
{
    delete ui;
}
 
void MainWindow::timerUpdate(void)
{
    QDateTime time = QDateTime::currentDateTime();
    QString str = time.toString("yyyy-MM-dd hh:mm:ss dddd");
    ui->label->setText(str);
}

运行效果如下:

技术图片

Qt 实时显示系统时间

标签:slots   jsb   http   size   connect   new   update   blog   ast   

原文地址:https://www.cnblogs.com/wuhongbin/p/14048106.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!