使用CLion新建项目写代码的时候,刚给出的main.cpp是这个样子的
#include <iostream> int main() { std::cout << "Hello, World!" << std::endl; return 0; }
而我写的只是简单的代码,喜欢这样子的
#include <iostream> using namespace std; int main() { return 0; }
有没有什么办法更改他给出的代码样式,这样子我能一劳永逸,不用每次都要using namespace std;
网上我搜了好多次,改的都只是新建项目以后,自己新建文件的代码样式,都不能更改项目初始文件,烦死了