上一页 1 2 3 4 5 6 ··· 43 下一页
摘要: C/C++ 网络库 https://getiot.tech/linux-c/linux-network-libraries/ https://zhuanlan.zhihu.com/p/631669916 https://developer.aliyun.com/article/246985 http 阅读全文
posted @ 2025-08-05 14:13 michaelchengjl 阅读(17) 评论(0) 推荐(0)
摘要: C++ 日期时间处理 https://blog.csdn.net/jg_csdn/article/details/129882408 https://www.runoob.com/cplusplus/cpp-date-time.html https://blog.csdn.net/caoshangp 阅读全文
posted @ 2025-08-04 15:34 michaelchengjl 阅读(9) 评论(0) 推荐(0)
摘要: C++常见日志库推荐 https://zhuanlan.zhihu.com/p/623999637 https://blog.csdn.net/u014597198/article/details/135009980 https://zhuanlan.zhihu.com/p/663440863 ht 阅读全文
posted @ 2025-08-04 15:22 michaelchengjl 阅读(55) 评论(0) 推荐(0)
摘要: C/C++ 命令行参数解析库选型 https://hanpfei.github.io/2019/04/01/c_cpp_args_parsing/ https://www.stubbornhuang.com/2088/ 不是轻量级的,也不是只有头文件,虽然很好: https://llvm.org/d 阅读全文
posted @ 2025-08-01 11:28 michaelchengjl 阅读(47) 评论(0) 推荐(0)
摘要: Google 开发的 Abseil:强大开源库工具箱 https://blog.csdn.net/xiaobaiPlayGame/article/details/127317752 https://www.showapi.com/news/article/66fcac574ddd79f11a2ec7 阅读全文
posted @ 2025-08-01 11:21 michaelchengjl 阅读(16) 评论(0) 推荐(0)
摘要: git 入门 以下是 Git 从基础到精通的详细实例教程,涵盖版本控制全流程和高级技巧,配合具体操作示例: 一、Git 基础操作 初始化仓库 # 创建新目录并初始化 mkdir my-project && cd my-project git init 首次提交 # 创建文件并提交 echo "# M 阅读全文
posted @ 2025-07-30 11:26 michaelchengjl 阅读(90) 评论(0) 推荐(0)
摘要: git patch 在 Git 中,打补丁(Patch)是将代码变更以文件形式保存和共享的方式。以下是详细的操作步骤和示例: 1. 生成 Patch 文件 1.1 未提交的修改生成 Patch # 生成工作区所有未暂存的修改 git diff > changes.patch # 生成已暂存的修改(s 阅读全文
posted @ 2025-07-30 11:14 michaelchengjl 阅读(330) 评论(0) 推荐(0)
摘要: onnx-mlir https://github.com/onnx/onnx-mlir https://onnx.org.cn/onnx-mlir/ImportONNXDefs.html https://zhuanlan.zhihu.com/p/349912488 https://blog.csdn 阅读全文
posted @ 2025-07-18 14:14 michaelchengjl 阅读(26) 评论(0) 推荐(0)
摘要: C++ 动态多态与静态多态 在 C++ 中,动态多态(Dynamic Polymorphism) 和 静态多态(Static Polymorphism) 是两种不同的多态实现方式,分别通过 运行时动态绑定 和 编译时静态决议 来实现代码的灵活性和复用性。以下是它们的详细对比与实现原理分析: 1. 动 阅读全文
posted @ 2025-07-16 17:53 michaelchengjl 阅读(62) 评论(0) 推荐(0)
摘要: C/C++ 混合编程 预处理指令组合 #ifdef __cplusplus extern "C" { #endif // 这里是需要处理的代码块 #ifdef __cplusplus } #endif 这段代码是 C/C++ 混合编程中用于 解决名称修饰(Name Mangling)问题 的经典预处 阅读全文
posted @ 2025-07-14 15:06 michaelchengjl 阅读(25) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 43 下一页