QUuid 可 生成一个唯一的标识码,主要是利用它的静态方法,windows平台下具有唯一性
#include <QUuid>
QString uuidStr = QUuid::createUuid().toString();
qDebug() << "uuidStr:" << uuidStr;
QString Str = uuidStr.remove("-").remove("{").remove("}");
qDebug() << "Str:"<< Str;
运行结果:
参考博客:
QUui讲解