其他分享
首页 > 其他分享> > 如何修改CodeBlocks创建项目默认的main.cpp

如何修改CodeBlocks创建项目默认的main.cpp

作者:互联网

我们知道,当我们需要新建一个debug工程的时候,CodeBlocks会自己新建一个main.cpp并且里面有如下图所示的代码

#include <iostream>

using namespace std;

int main()
{
    cout << "Hello world!" << endl;
    return 0;
}

那么我们该如何修改呢?

1. 找到{CodeBlocks的安装路径}\CodeBlocks\share\CodeBlocks\templates\wizard\console\cpp
比如我把CodeBlocks放在D:\Download下面,路径应该是D:\Download\CodeBlocks\share\CodeBlocks\templates\wizard\console\cpp

2. 打开main.cpp

3. 编辑main.cpp成自己需要的样子
我把main.cpp改成空文件,则效果如下图所示
在这里插入图片描述

标签:CodeBlocks,console,wizard,share,cpp,main
来源: https://blog.csdn.net/Steve_Liu12399/article/details/116028745