摘要: 下载 配置系统proxy,配置git proxy,配置 运行批处理窗体的proxy 下载 git,python 下载depot_tools 下载源码 迁出指定版本并创建本地分支(git checkout -b localname commitid) 注意点: 默认下载main 分支,不稳定,使用 - 阅读全文
posted @ 2024-11-15 18:03 aynulily 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Vim 使用 插入模式 进入插入模式: 不同模式下(Esc 进入),按 s :进入插入模式,并删除当前光标字符 普通模式下(Esc 进入),按 i : 进入插入模式,并再当前光标前插入下一个输入字符 普通模式下(Esc 进入) ,按 o :进入插入模式,并在光标所在行的下一行新创建空白行中输入 普通 阅读全文
posted @ 2024-10-30 15:18 aynulily 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 结构化异常处理 在异常点生成异常的结构体,异常分发 WPF中的三个Excption处理函数 AppDomain::UnhandledException 事件属性 UI线程和Thread 实例的异常会触发该事件。 Application::DispatcherUnhandledExcetion 事件属 阅读全文
posted @ 2024-08-07 18:01 aynulily 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 基础总括 预处理指令 宏定义 **宏常量 ,替换 **无值宏定义,用于条件编译,与#ifdefine 一起使用 **宏函数,仅替换,无类型检查,宏函数名,参数 ,宏函数体 #define PI 3.14 #define Add(num1,num2) num1+num2 #define Win32 阅读全文
posted @ 2024-08-02 13:24 aynulily 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 括号() [] {} 成员访问 . 和 -> 示例 自增运算符与指针解引用(前自增<后自增,指针解引用 < 后自增,后自增在语句或者一次循环结束或者函数调用或者逗号时运算) 阅读全文
posted @ 2024-08-01 14:22 aynulily 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 容器 vector vector创建 * vector 占用内存 vector 方法 vector 清理 阅读全文
posted @ 2024-07-31 16:22 aynulily 阅读(1) 评论(0) 推荐(0) 编辑
摘要: typedef bool (*tool_func_t)(const std::vector<std::string> &args); struct Tool { const char *name; tool_func_t func; }; static const Tool kTools[] = { 阅读全文
posted @ 2024-07-31 10:47 aynulily 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Windbg 异常分析 生成dump 文件 .dump /ma D:\my.dmp 使用procdump/procdump64.exe 生成dump文件 托管层异常 !t 非托管层异常 .ecxr dump文件 内核模式与用户模式 开启内核模式 bcdedit /debug on 阅读全文
posted @ 2024-07-30 17:14 aynulily 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 0:000> !sos.help SOS is a debugger extension DLL designed to aid in the debugging of managed programs. Functions are listed by category, then roughly 阅读全文
posted @ 2024-07-30 15:52 aynulily 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 解决:连接字符串中 datasource 改为 data source 中间有空格 阅读全文
posted @ 2016-09-13 16:56 aynulily 阅读(112) 评论(0) 推荐(0) 编辑