linux下编写C++程序
以下是在linux系统下编写C++程序的代码,自己编写的,有错误的地方希望能指出:cd /lsmkdir workspace 创建workspace目录cd /workspace 进入该目录,将程序写在该目录下ls 查看目录是否创建成功touch test.hls 查看test.h是否创建成功vim test.h 进入test.h文件#这里是注释:开始编写C++代码#inc
以下是在linux系统下编写C++程序的代码,自己编写的,有错误的地方希望能指出:
cd /
ls
mkdir workspace 创建workspace目录
cd /workspace 进入该目录,将程序写在该目录下
ls 查看目录是否创建成功
touch test.h
ls 查看test.h是否创建成功
vim test.h 进入test.h文件
#这里是注释:开始编写C++代码
#include <isotream>
using namespace std;
class Solution
{
private:
int num;//全局变量
public:
Solution(void);
~Solution(void);
void print();//函数
};
:wq 保存退出
touch test.cpp
vim test.cpp 进入test.cpp文件
#include "test.h" 引用我们刚才自定义的头文件
Solution::Solution(void)
{}
Solution::~Solution(void)
{}
void Solution::print()
{
num=10;
cout<<"The num is"<<num<<endl;
}
:wq
touch main.cpp
vim main.cpp
int main()
{
Solution s;
s.print();
return 0;
}
:wq
//编译该程序
gcc main.cpp -o 你想生成的文件名(默认生成a.out,这里我们设置成main.out)
//编译通过,则可以进行运行程序
./main.out
//结束!
更多推荐
所有评论(0)