随笔分类 -  c++

摘要:Cppcheck下载安装 在 https://cppcheck.sourceforge.io/ 中下载对应的 window 系统的 Cppcheck 安装文件 安装完成后,在环境变量中添加 cppcheck.exe 文件所在目录到 path 变量中 CMake项目中使用Cppcheck 通过命令行c 阅读全文
posted @ 2024-12-23 09:33 川野散人 阅读(1132) 评论(0) 推荐(0)
摘要:方式一 纯c++方式(c++11) #include <string> #include <memory> template <class... Args> int string_format(std::string& format, Args&&... args) { auto size_buf 阅读全文
posted @ 2021-10-22 16:45 川野散人 阅读(1364) 评论(0) 推荐(0)