会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
zhxzh
博客园
首页
新随笔
联系
订阅
管理
1
2
下一页
2024年3月11日
Qt | pro输出目标平台
摘要: message("Current QT_ARCH: $$QT_ARCH")
阅读全文
posted @ 2024-03-11 09:51 zhxzh
阅读(26)
评论(0)
推荐(0)
2022年5月5日
C++ | 变量缩写
摘要: Aabsolute -> absaddress -> addrapplication -> appargument -> argarguments -> argsarray -> arrassemble -> asmasynchronize -> asyncattribute -> attrattr
阅读全文
posted @ 2022-05-05 14:02 zhxzh
阅读(270)
评论(0)
推荐(0)
2022年1月7日
Qt | QML Image SSL handshake failed
摘要: //默认SSL开启certificate QSslConfiguration sslConf = QSslConfiguration::defaultConfiguration(); sslConf.setPeerVerifyMode(QSslSocket::VerifyNone); QSslCon
阅读全文
posted @ 2022-01-07 10:04 zhxzh
阅读(286)
评论(0)
推荐(0)
2021年12月21日
C++ | Int转十六进制字符串
摘要: //i要转化的十进制整数,width转化后的宽度,位数不足则补0 std::string dec2hex(int i, int width) { std::stringstream ioss; //定义字符串流 std::string s_temp; //存放转化后字符 ioss << std::h
阅读全文
posted @ 2021-12-21 10:43 zhxzh
阅读(2880)
评论(0)
推荐(1)
2021年7月5日
Qt | mingw+cmake编译Opencv4.1.2
摘要: OpenCV 获取 OpenCV 从官网下载 openCV 。在本指南中,使用版本4.1.2。启动 opencv-3.2.0-vc14.exe 并让它解压到 d:\ 。现在文件夹 d:\opencv _4.1.2_Sources已创建。 将 minGW 添加到 windows PATH 变量 打开控
阅读全文
posted @ 2021-07-05 13:56 zhxzh
阅读(238)
评论(1)
推荐(1)
2021年5月24日
Qt | 为QStringList中的所有元素之间添加固定字符
摘要: QStringList strList; strList << "1" << "2" << "3" << "4";QString str = strList.join("-");qDebug()<<str; 输出:"1-2-3-4"
阅读全文
posted @ 2021-05-24 14:55 zhxzh
阅读(475)
评论(0)
推荐(0)
2021年5月17日
Qt | QByteArray添加元素和初始化全为0
摘要: 添加元素:QByteArray byteArray("\xFe\xFe\x09\x00", 4); byteArray.append(1, (uchar)opt1); byteArray.append("\xA5", 1);初始化全为0: byteArray.append(10, char(0));
阅读全文
posted @ 2021-05-17 16:41 zhxzh
阅读(3938)
评论(0)
推荐(0)
2021年4月27日
Qt | 添加管理员权限运行(MSVC编译器)
摘要: 在pro工程文件添加下面一句话即可。 QMAKE_LFLAGS += /MANIFESTUAC:\"level=\'requireAdministrator\' uiAccess=\'false\'\" 注意uiAccess前面有个空格!!!
阅读全文
posted @ 2021-04-27 18:35 zhxzh
阅读(445)
评论(0)
推荐(0)
2019年6月10日
node egg | 部署报错:server got error:bind EADDRNOTAVAIL
摘要: egg框架实现的服务,部署在阿里云服务器上报出以下错误: 解决方案: config.js中 exports.cluster = { "listen": { "path": "", "hostname": "0.0.0.0",//配置IP 或阿里云内网地址(阿里云外网地址会报此错误) "port":
阅读全文
posted @ 2019-06-10 14:56 zhxzh
阅读(1529)
评论(0)
推荐(0)
2018年9月30日
Node.js 中监听 redis key 过期事件
摘要: It is in fact possible to listen to the “expired” type keyevent notification using a subscribed client to the specific channel and listening to its me
阅读全文
posted @ 2018-09-30 17:21 zhxzh
阅读(1187)
评论(0)
推荐(0)
1
2
下一页
公告