上山打老虎 发表于 2021-7-8 17:57:40

Qt常用代码总结

  1、Qt获取时间秒数,毫秒数,当前时间,代码如下:
#include <QCoreApplication>
#include <QDateTime>
#include <QDebug>
#include <QTime>

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    //获取时间秒数
    qint64 startSec = QDateTime::currentDateTime().toTime_t();

    QDateTime current_date_time = QDateTime::currentDateTime();

    //获取当前时间
    QString current_time = current_date_time.toString("hh:mm:ss.zzz");
    qDebug() << current_time;

    //int QTime::msec () const
    //Returns the millisecond part (0 to 999) of the time.

    //获取时间毫秒值
    //方法1
    QTime t;
    t.start();
    int msec = t.msec();
    qDebug() << msec;

    //方法2
    qint64 timestamp = QDateTime::currentDateTime().toMSecsSinceEpoch(); //毫秒级
    qDebug() << timestamp;

    return a.exec();
} 2、获取程序路径
  
         获取程序所在路径,QCoreApplication 类里就实现了相关的功能:
  比如我们有一个程序在:
  C:/Qt/examples/tools/regexp/regexp.exe
  (1)qApp->applicationDirPath() 的结果是:
  C:/Qt/examples/tools/regexp
  (2)如果除了程序所在路径,我们还想要程序的完整名称。那么可以这么写:
  qApp->applicationFilePath()
  还是上面的例子,结果是:
  C:/Qt/examples/tools/regexp/regexp.exe
3、去掉窗口右上角问号
setWindowFlags(Qt::WindowCloseButtonHint | Qt::MSWindowsFixedSizeDialogHint); 4、QString转wchar_t*
QString fileName= "123.mp4";

const wchar_t* wstr = reinterpret_cast<const wchar_t *>(fileName.utf16());

  
文档来源:51CTO技术博客https://blog.51cto.com/u_12570763/3012483
页: [1]
查看完整版本: Qt常用代码总结