一、C++ 编辑器和编译器

1.VScode 安装c/c++插件即可

2.编译器版本:gcc 7.5版本及以上

 

二、C++ 文件及编译、运行

1.C++ 文件以.cpp 为后缀

2.编译、运行

下面是一段C++ 代码,打印hello world, test.cpp

#include <iostream>

int main()
{
        std::cout<<"hello world"<<std::endl;
        return 0;
}

编译:

方法一:不指定输出文件名

  • g++ test.cpp 
  • 生成a.out可执行文件,运行该可执行文件:./a.out  ( 打印hello world)

方法二:指定输出文件名

  • g++ -o test test.cpp
  • 生成可执行文件test,运行该可执行文件:./test. ( 打印hello world)