上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 38 下一页
摘要: 前言 本文将贴出基于Qt5.14读取任意sqlite数据库文件内容的源码 文件有3个 序号 名称 概述 1 SqliteExt.h sqlite数据库读写头文件 2 SqliteExt.cc sqlite数据库读写源文件 3 CommonDef.h 常用定义 后面有空再优化代码吧, 现在起码功能有了 阅读全文
posted @ 2022-03-23 01:14 mohist 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 前言 sqlite用起来轻便 自己常用sqlite存放程序所需的配置数据 先前做了一个可读取任意sqlite数据的工具,但是有局限,可以在 这里 获取 于是重构了一个轻便版,这样就可以读取任意sqlite的配置了 拖拽打开文件 基于Qt5.14实现 可读取任意sqlite3的数据库,如果数据库中的数 阅读全文
posted @ 2022-03-23 01:08 mohist 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 环境 os: win11 cmake: 3.23 qt: qt5.14 其他vscode c++辅助开发插件, 我的插件列表 编译 vscode + cmake + qt5.14 文件列表 cmakelists.txt 完整内容 cmake_minimum_required(VERSION 3.18 阅读全文
posted @ 2022-03-18 07:27 mohist 阅读(1213) 评论(0) 推荐(0) 编辑
摘要: 错误信息 error LNK2005: main 已经在 CMakeCXXCompilerId.obj 中定义 分析 main函数重定义导致 原因 出错时的cmake文件内容 cmake_minimum_required(VERSION 3.18) project(cmake_demo01 LANG 阅读全文
posted @ 2022-03-18 00:23 mohist 阅读(953) 评论(0) 推荐(0) 编辑
摘要: 版本 V2.6.4 顺序 1.清理 xmake f -c 2. 切换为vs工具链 xmake f -p windows --toolchain=msvc --vs=2015 -a x64 3. 生成 xmake project -k vsxmake2015 -m "debug,release" xm 阅读全文
posted @ 2022-03-16 22:17 mohist 阅读(385) 评论(0) 推荐(0) 编辑
摘要: note 一个开发利器 阅读全文
posted @ 2022-03-14 21:10 mohist 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 一个例子 #include <type_traits> template <typename T, typename U> typename std::common_type<T, U>::type max(T a, U b) { return b < a ? a : b; } 上面的函数, 使用下 阅读全文
posted @ 2022-03-10 19:52 mohist 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 前言 不能只看, 尤其是模板这块, 多上手, 熟能生巧 好文地址 中文的C++ Template的教学指南 阅读全文
posted @ 2022-03-08 20:09 mohist 阅读(101) 评论(0) 推荐(0) 编辑
摘要: cmake拷贝文件夹 使用add_custom_target完成拷贝 下面的核心代码, 以VS2015为例,将会创建一个名为copy_files的项目,见下图: 核心代码范例 # 拷贝文件夹到指定的目录 add_custom_target(copy_files ALL VERBATIM # COMM 阅读全文
posted @ 2022-03-03 00:25 mohist 阅读(4374) 评论(0) 推荐(0) 编辑
摘要: 参考资料 http://chonghw.github.io/ http://chonghw.github.io/ http://chonghw.github.io/blog/2016/08/11/memoryreorder/ http://chonghw.github.io/blog/2016/09 阅读全文
posted @ 2022-02-23 22:01 mohist 阅读(101) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 38 下一页