摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Linq; namespace Param 阅读全文
posted @ 2021-04-20 10:57 碎银三二两 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 一、使用配置0. 下载Visual Leak Detector for Visual C++ 2008-2015最新版时V2.5.1支持到VC2015,官方地址:Visual Leak Detector for Visual C++ 2008-2015 - CodePlex Archive (Git 阅读全文
posted @ 2021-04-20 10:53 碎银三二两 阅读(867) 评论(0) 推荐(0) 编辑
摘要: GuiToolkit(开源,类似Visual Studio 2003风格) http://www.beyondata.com/default.htm GardenUI(免费,界面效果挺好的,XML,代码 界面 分离)http://www.gardenui.com/ CJLib(开源,免费,UNICO 阅读全文
posted @ 2021-03-30 17:22 碎银三二两 阅读(525) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-03-27 10:09 碎银三二两 阅读(1259) 评论(0) 推荐(1) 编辑
摘要: 参阅:https://cloud.tencent.com/developer/article/1343240 【1】ASCII 每个字符占据1bytes,用二进制表示的话最高位必须为0(扩展的ASCII不在考虑范围内),因此ASCII只能表示128个字 【2】GB2312 最早一版的中文编码,每个字 阅读全文
posted @ 2021-03-26 13:30 碎银三二两 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1. gcc工作流程 1. 预处理 gcc -E 2. 编译 gcc -S 3. 汇编 gcc -c 4. 链接 没参数 2.常用参数 -o: 指定生成的文件的名字 -D: 在编译的时候定义宏(控制log的输出) -I: 指定头文件的路径 -g: gdb调试的时候需要添加该参数 -O: 编译优化, 阅读全文
posted @ 2021-03-23 13:52 碎银三二两 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 终端快捷键1. Shell、 Bash 学名叫什么?命令解析器2. Shell 和 Bash的关系?Unix Shell/ Linux Bash3. 在linux终端下使用什么键来补齐命令或者路径?Tab4. 当前用户所在目录为/home/itcast/ 此时按两侧tab键会看到什么效果?提示该目录 阅读全文
posted @ 2021-03-23 11:32 碎银三二两 阅读(52) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get install aptitude 一个与apt-get功能相近的下载工具aptitude sudo apt-get install vsftpd ftp服务 sudo apt-get install lftp 一个ftp客户端 sudo apt-get install op 阅读全文
posted @ 2021-03-17 22:28 碎银三二两 阅读(96) 评论(0) 推荐(0) 编辑
摘要: QImage Mat2QImage(const cv::Mat& mat) { // 按照Qt帮助文档说明,像素buffer必须在QImage的生命周期内保持有效,且它默认是不会去释放像素buffer,QImage对象之间采用引用计数实现隐式共享底层数据 if (mat.type() == CV_8 阅读全文
posted @ 2021-03-17 16:07 碎银三二两 阅读(799) 评论(0) 推荐(0) 编辑
摘要: // CIniHelper.h Copyallright By DJH5520 2017-10#ifndef _CINIHELPER_H_ #define _CINIHELPER_H_ #include <unordered_map> // 查找速度O(1) #include <vector> #i 阅读全文
posted @ 2021-03-12 09:27 碎银三二两 阅读(703) 评论(0) 推荐(0) 编辑