2022年11月24日

Win10下如何添加“中文简体(美式键盘)”输入法

摘要: 参考Win10下如何添加“中文简体(美式键盘)”输入法 设置>>时间和语言>>语言>>添加语言>>选择要安装的语言>>英语(美国),上移英语(美国),删除中文, 修改注册表:HKEY_CURRENT_USER\Keyboard\Layout\Preload,修改“1”的键值为“00000804”,然 阅读全文

posted @ 2022-11-24 09:32 OctoberKey 阅读(1338) 评论(0) 推荐(0)

2022年11月12日

windows常用命令

摘要: Windows常用快捷键和常用的cmd命令 Windows常用命令一览表 40个非常实用的 Windows系统命令大全 Windows10命令大全 控制面板快捷方式大全 控制面板 模块: control.exe 命令: rundll32.exe shell32.dll,Control_RunDLL 阅读全文

posted @ 2022-11-12 10:01 OctoberKey 阅读(130) 评论(0) 推荐(0)

2022年11月2日

C++17:结构化绑定(Structured binding)

摘要: https://stubbornhuang.blog.csdn.net/article/details/120740713 #include <iostream> #include <map> #include <tuple> std::pair<int, std::string> getPair( 阅读全文

posted @ 2022-11-02 09:57 OctoberKey 阅读(46) 评论(0) 推荐(0)

2022年10月19日

c++ std::string转大、小写

摘要: #include <iostream> #include <algorithm> int main() { std::string src = "HELLO, WORLD!"; std::string dst; std::transform(src.begin(), src.end(), std:: 阅读全文

posted @ 2022-10-19 15:42 OctoberKey 阅读(178) 评论(0) 推荐(0)

2022年10月15日

Visual Studio编辑注册增强功能

摘要: Editor Registration Enhancements编辑注册增强功能 Since its creation, Visual Studio has supported custom editor registration where an editor can declare its af 阅读全文

posted @ 2022-10-15 22:09 OctoberKey 阅读(43) 评论(0) 推荐(0)

Visual Studio扩展开发——清理实验环境

摘要: 清理实验环境 如果您正在开发多个扩展,或者只是使用不同版本的扩展代码来探索结果,那么您的实验环境可能会停止按应有的方式工作。在这种情况下,您应该运行重置脚本。它称为重置 Visual Studio 实验实例,它作为 Visual Studio SDK 的一部分提供。此脚本会从实验环境中删除对您的扩展 阅读全文

posted @ 2022-10-15 21:39 OctoberKey 阅读(91) 评论(0) 推荐(0)

2022年10月13日

LabwindowsCVI调试卡住

摘要: 主要原因是watch的变量影响了 用记事本打开cws文件,到文件末尾删除[watch]节点,就好了。 阅读全文

posted @ 2022-10-13 14:18 OctoberKey 阅读(145) 评论(0) 推荐(0)

2022年10月8日

cpp-properties调试纪要

摘要: 报两个错误 std::result_of错误,C++20不支持,提前定义_HAS_DEPRECATED_RESULT_OF 实际用的是Qt5,不支持Q_DISABLE_COPY_MOVE,改为Q_DISABLE_COPY // file: QtCore/qobjectdefs.h, line: 53 阅读全文

posted @ 2022-10-08 15:46 OctoberKey 阅读(137) 评论(0) 推荐(0)

2022年9月28日

chrono库学习

摘要: 参考 C++11 std::chrono库详解 cppreference日期和时间工具 头文件 #include <chrono> 名字空间 using namespace std::chrono; using namespace std::literals::chrono_literals; // 阅读全文

posted @ 2022-09-28 22:00 OctoberKey 阅读(81) 评论(0) 推荐(0)

2022年9月21日

使用C++11线程延时

摘要: #include <thread> #include <chrono> using namespace std::chrono_literals; using namespace std::this_thread; sleep_for(1ms); 阅读全文

posted @ 2022-09-21 13:02 OctoberKey 阅读(260) 评论(0) 推荐(0)

导航