上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: 阅读全文
posted @ 2023-11-28 11:44 SusieSnail_SUN 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 使用 Windows 系统自带的sfc命令 sfc 命令是 Windows 系统自带的一个命令,可以扫描并修复系统文件中的错误。 第1步:在开始菜单中搜索“命令提示符”,右键选择“以管理员身份运行”。 第2步:在管理员窗口输入“sfc /scannow”命令,并回车,等待扫描完成。如果有相关错误被发 阅读全文
posted @ 2023-11-06 08:54 SusieSnail_SUN 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 参见 How to setup Qt and openCV on Windows - Qt Wiki QT + OPENCV + OpenCV_contrib + MINGW编译_东方.既白的博客-CSDN博客 基本操作参见其他的博客; 主要记录 更改了cmake、opencv、qt 多个版本均没有 阅读全文
posted @ 2023-11-04 15:33 SusieSnail_SUN 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 参照 Visual Studio 2022 查看类关系图_vs2022查看类图_code bean的博客-CSDN博客 阅读全文
posted @ 2023-11-03 14:52 SusieSnail_SUN 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 1. error: QImage: No such file or directory #include <QImage> 解决方法: 在.pro文件中添加 QT += widgets 阅读全文
posted @ 2023-11-03 14:50 SusieSnail_SUN 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 要将QStringList转换为string,可以使用QStringList的join()函数将所有的QString连接成一个字符串。例如: ```cpp QStringList list; list << "Hello" << "World"; QString str = list.join(" 阅读全文
posted @ 2023-09-18 08:39 SusieSnail_SUN 阅读(423) 评论(0) 推荐(0) 编辑
摘要: Analyser* Analyser::Instance() { static QMutex mutex; static QScopedPointer<Analyser> inst; if (Q_UNLIKELY(!inst)) { mutex.lock(); if (!inst) { inst.r 阅读全文
posted @ 2023-09-15 12:06 SusieSnail_SUN 阅读(4) 评论(0) 推荐(0) 编辑
摘要: CRLF、LF和CR是与a56爆大奖在线娱乐文件中换行符有关的术语。 CRLF:CRLF代表回车(CR,Carriage Return)和换行(LF,Line Feed),是a56爆大奖在线娱乐常见的换行符序列。在许多操作系统中,如Windows,a56爆大奖在线娱乐文件中的换行通常由回车符和换行符组成,即"\r\n"。这种换行符序列告诉操作系统 阅读全文
posted @ 2023-09-14 21:24 SusieSnail_SUN 阅读(593) 评论(0) 推荐(0) 编辑
摘要: #include <QXmlStreamReader> #include <QFile> #include <QDebug> int main() { QFile file("example.xml"); if (!file.open(QFile::ReadOnly | QFile::Text)) 阅读全文
posted @ 2023-09-13 17:01 SusieSnail_SUN 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 在新建的QT 工程中的 pro 文件中添加sqlite的配置,QT+=sql,执行qmake即可,这样sqlite就添加到a56爆大奖在线娱乐们的工程中了。 添加sqlite的头文件 #include<QSqlDatabase> #include<QSqlQuery> #include<QSqlRecord> #in 阅读全文
posted @ 2023-09-06 17:06 SusieSnail_SUN 阅读(91) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页