C++
文章平均质量分 65
非乐墨轩
这个作者很懒,什么都没留下…
展开
-
passing ‘const XXX’ as ‘this’ argument discards qualifiers
错误分析错误代码:// DataPointBase.hclass DataPointBase { public: DataPointBase() = default; explicit DataPointBase(std::vector<std::string> &_keys); std::vector<std::string> Keys() const; double &operator[](const std::string&原创 2021-03-30 11:28:03 · 3150 阅读 · 0 评论 -
[官方文档翻译]Mac使用VS Code配置C++编译和调试环境
Mac使用VSCode配置C++编译和调试环境这是一篇翻译稿,原文为VSCode官方Docs。文章目录Mac使用VSCode配置C++编译和调试环境Prerequisites确保安装了Clang创建 Hello World添加hello world源码文件在这个教程中,你将学会如何在macOS环境下配置VS Code来使用clang/LLVM编译器和调试器。Prerequisites在开始这个教程之前,你需要先安装好:MacOS 版的Visual Studio Code;VSCode C++翻译 2020-11-26 19:01:47 · 12264 阅读 · 18 评论 -
如何使用CLion进行远程调试?
操作步骤准备编译程序配置CLion合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入准备CLion;一个通过cmake编译的...原创 2020-02-11 20:57:11 · 4279 阅读 · 1 评论 -
[Work Summary #4]Negative Bin Content and Data Reading Error
Problem description:When plotting the spectrum of each isotope of MC data, I get an spectrum with negative bin content.float weight(0), energy(0), vertx(0), verty(0), vertz(0);h_iso->Fill(energy...原创 2019-10-14 20:53:52 · 208 阅读 · 0 评论 -
[Work Summary #2]‘cout’ does not name a type || Error: illegal pointer to class object
Solution:https://stackoverflow.com/questions/9935027/cout-does-not-name-a-typeyou should not use cout out of a function, basically in main. Also, for other funtion or method is the same.转载 2019-04-05 17:31:38 · 1111 阅读 · 0 评论