摘要: boost编译与安装: b2 stage --toolset=msvc-14.2 --stagedir="D:\boost\stage\boost_1_78_0\vc142" --with-date_time link=static runtime-link=shared runtime-link= 阅读全文
posted @ 2022-01-28 11:39 echohelper 阅读(486) 评论(0) 推荐(0) 编辑
摘要: Vs版本与平台工具集版本的对应关系如下: -Visual Studio 2019: V142 -Visual Studio 2017: V141 -Visual Studio 2015: V140 -Visual Studio 2013: V120 -Visual Studio 2012: V110 阅读全文
posted @ 2022-01-05 10:45 echohelper 阅读(704) 评论(0) 推荐(0) 编辑
摘要: 不死不老 众生感慨青春易逝,春夏秋冬数载已觉老。 真的老了吗! 已老,你看我真的老了。 未老,你看你真的老了。 未至死亦不老,不死不老。 阅读全文
posted @ 2021-09-01 16:56 echohelper 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 问题原因: Qt添加大量资源文件,编译时会出现内存溢出。 解决方法: 在.pro 文件里面加上语句: CONFIG += resources_big 阅读全文
posted @ 2021-08-27 17:17 echohelper 阅读(778) 评论(0) 推荐(0) 编辑
摘要: 如何创建呢?其实很简单,而且微软文档已够你玩耍的啦。So Now 自己去玩耍吧!!! 1、工具、命令使用方法: https://docs.microsoft.com/zh-cn/visualstudio/install/create-an-offline-installation-of-visual 阅读全文
posted @ 2021-08-27 17:14 echohelper 阅读(280) 评论(0) 推荐(0) 编辑
摘要: C++ 控制台程序不显示控制台黑框 解决方法: 只需要在代码中加上如下内容: #pragma comment( linker, "/subsystem:windows /entry:mainCRTStartup" )//不显示控制台 示例代码: #include "stdafx.h" #includ 阅读全文
posted @ 2021-05-11 09:22 echohelper 阅读(1695) 评论(0) 推荐(0) 编辑
摘要: Window上VsCode中基于PyQt5的Python开发 之 环境搭建 一、安装VsCode 二、安装Python 三、安装PyQt5 及其他模块 1、安装PyQt5:如:pip install pyqt5 -i https://pypi.douban.com/simple 2、安装PyQ5-t 阅读全文
posted @ 2021-05-07 11:44 echohelper 阅读(715) 评论(0) 推荐(0) 编辑
摘要: This application failed to start because it could not find or load the Qt platform plugin "windows" in "". 问题的原因是:缺少window平台运行的相应的插件。 解决方法: 1、使用windep 阅读全文
posted @ 2021-04-30 15:39 echohelper 阅读(3407) 评论(0) 推荐(0) 编辑
摘要: error C2672: "std::invoke": 未找到匹配的重载函数 1、线程使用vector的地方,使其他替换; 2、std::bind方式,改为lambda方式; 阅读全文
posted @ 2021-02-25 18:59 echohelper 阅读(1218) 评论(0) 推荐(0) 编辑
摘要: Visual Studio对齐分割线设置 详情参阅:官方地址:https://github.com/pharring/EditorGuidelines#getting-started 阅读全文
posted @ 2021-02-25 09:55 echohelper 阅读(583) 评论(0) 推荐(0) 编辑