摘要: 工作区域 初始化Git并上传到Github git init git add * git commit -m "first commit" git remote add origin https://github.com/hanxinyumeng/myNotes.git git push -u or 阅读全文
posted @ 2022-01-03 21:38 寒心雨梦 阅读(43) 评论(0) 推荐(0)
摘要: 1. 下载链接 ● 蓝奏云下载(可直接下载无需登录) ● 百度云下载 提取码:pajo ​下载下来并解压后双击exe就可以运行,默认快捷键为Alt+z 详细使用教程 2. 功能介绍 截图OCR提取文字 翻译 贴图 固定区域截图 3. 截图文字提取操作演示: 4. 拖拽图片提取操作演示 阅读全文
posted @ 2022-01-03 18:32 寒心雨梦 阅读(509) 评论(0) 推荐(0)
摘要: const与指针 总共有一下四种形式: const int *p p指向一个int型常量 int const *p p指向一个int型常量 int * const p p是一个指向int型的const指针 const int * const p p是一个指向int型常量的const指针 阅读全文
posted @ 2022-01-03 15:46 寒心雨梦 阅读(48) 评论(0) 推荐(0)