C++编程工具使用和介绍
Windows:Dev C++、Code::BLocks、VsCode、Clion
Mac:Code Runner、VsCode、Clion
NOI Linux:Code::BLocks
clang-format
clang-format -i C:\workspace\wokspaceCpp\amdCpp\hello.cpp
clang-format -style="{BasedOnStyle: LLVM, IndentWidth: 4}" -i C:\workspace\wokspaceCpp\amdCpp\hello.cpp
苹果电脑
clang-format -style="{BasedOnStyle: LLVM, IndentWidth: 4}" -i ./hello.cpp
你可以在项目的根目录或者源代码目录下创建一个 .clang-format 文件,然后在这个文件中添加如下内容:
BasedOnStyle: LLVM
IndentWidth: 4
这样配置文件告诉 clang-format 使用 LLVM 风格,并将缩进宽度设置为4个空格。