09 2018 档案

摘要:#开始 最近在调试代码的时候,生成了一个400MB的日志文件 找了很多文本编辑器,都表示太大了打不开 QAQ #解决方案 百度下载 “txt杀手” 用这个软件把文本文件拆分成小份就可以打开了 输入如图⬆ #技巧 这个软件在拆分之后会生成一个合并的bat文件,所以 可以拆开文件之后编辑之后再合并 以此 阅读全文
posted @ 2018-09-17 20:09 Startu 阅读(8155) 评论(0) 推荐(0)
摘要:#include <atlimage.h> #include <atltime.h> #include <conio.h> //截取全屏保存为png CString ScreenShot() { HDC hDCScreen = ::GetDC(NULL);//首先获取到屏幕的句柄 int nBitP 阅读全文
posted @ 2018-09-17 11:01 Startu 阅读(1780) 评论(0) 推荐(0)
摘要:#开始 · 简单的创建链表 #代码 1 #include<conio.h> 2 #include<stdio.h> 3 #include<stdlib.h> 4 5 struct Str 6 { 7 char name[100]; 8 int sex; 9 int id; 10 Str * next 阅读全文
posted @ 2018-09-07 09:28 Startu 阅读(175) 评论(0) 推荐(0)