Qt生成uuid
分类:Others, Qt
阅读 (2,934)
Add comments
6月 252018
首选在mainwindow.h中加入头文件引用
1 2 |
#include <QUuid> #include <QDebug> |
然后在mainwindow.cpp的构造函数中加入下面的代码:
1 2 3 4 5 6 7 8 9 10 |
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); QUuid uuid = QUuid::createUuid(); QString uuidstr = uuid.toString(); qDebug() << "RmcTOKEN: " << uuidstr; } |