红联Linux门户
Linux帮助

在linux下使用C++

发布时间:2007-05-28 00:51:15来源:红联作者:Collection
我用的是ubuntu,可以直接安装编译器。具体命令如下:(注:最好用root身份来安装)

1、使用如下命令进行安装(执行命令过程中会自动到网上下载文件,并安装)
apt-get install gcc
apt-get install make
apt-get install autoconf
apt-get install automake
apt-get install libtool
apt-get install gdb
apt-get install g++

2、编写hello.cpp
#include
int main()
{
std::cout<<"hello World!.\n";
return 1;
}

3、编译文件
g++ hello.cpp -o hello.out

4、执行生成的文件
hello.out
文章评论

共有 1 条评论

  1. xiayousen 于 2007-05-28 01:28:43发表:

    呵呵,红旗下用不了