摘要: #include <functional> #include <map> #include <random> #include <chrono> #include <iostream> #include <format> #include <cmath> #include <thread> #inc 阅读全文
posted @ 2023-08-11 18:02 黑马网仔 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1 class QueuryExcept(Exception): ... 2 3 class LinkNode: 4 def __init__(self, value: int, next = None): 5 self.value: int = value 6 self.next: LinkNod 阅读全文
posted @ 2023-06-30 17:11 黑马网仔 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 彻底搞懂python如何找包?包安装到哪了?如何更改环境变量? 阅读全文
posted @ 2022-11-15 14:54 黑马网仔 阅读(10) 评论(0) 推荐(0) 编辑
摘要: (43条消息) MFC快捷键功能使用总结_天上的猩猩Y的博客-CSDN博客_mfc 快捷键 阅读全文
posted @ 2022-08-10 17:23 黑马网仔 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 主要用到的关键api有两个: 1. GetConsoleScreenBufferInfo 用来获取当前光标位置 2. SetConsoleCursorPosition 用来设置控制台光标位置 示例代码: #define _AFXDLL #include <afx.h> #include <iostr 阅读全文
posted @ 2022-07-08 18:22 黑马网仔 阅读(38) 评论(0) 推荐(0) 编辑
摘要: Windbg调试命令详解 – 易也技术 (yiiyee.cn) 阅读全文
posted @ 2022-06-22 17:48 黑马网仔 阅读(21) 评论(0) 推荐(0) 编辑
摘要: (29条消息) c语言堆栈基本代码入栈出栈_第二十一课_堆栈图1_高冷小笼包的博客-CSDN博客 阅读全文
posted @ 2022-06-22 15:25 黑马网仔 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 1 //QuickAccess.h 2 3 #pragma once 4 5 #include <map> 6 7 struct QANode 8 { 9 QANode(int _key, int _value) 10 : key(_key) 11 , value(_value) 12 , next 阅读全文
posted @ 2022-06-21 17:53 黑马网仔 阅读(23) 评论(0) 推荐(0) 编辑
摘要: MFC 多线程间通信_努力的草根的博客-CSDN博客_mfc线程间通信 阅读全文
posted @ 2022-05-27 11:37 黑马网仔 阅读(51) 评论(0) 推荐(0) 编辑
摘要: (24条消息) 64位内核开发第十二讲,进程监视,ring3跟ring0事件同步._weixin_30315435的博客-CSDN博客 阅读全文
posted @ 2022-05-11 12:14 黑马网仔 阅读(31) 评论(0) 推荐(0) 编辑