如何在ubuntu下创建C++项目工程
- 环境的搭建
ubuntu操作系统是没有默认带C++编译器g++的,所以需要现安装g++。
echo sudo apt-get install g++
按回车即可安装C++的编译器g++。
- C++工程创建实例
以创建hello工程为例
- 在ubuntu系统下使用mkdir命令创建一个hello的目录。
sudo mkdir hello
- 使用vi工具在该目录下创建
| hello.h | hello.cpp | main.cpp | makefile |
- 使用vi工具在该目录下创建
- 各文件代码
- hello.h
#ifndef HELLO_H_
#define HELLO_H_
class Hello {
public:
void print();
};
#endif
- hello.cpp
#include “hello.h”
#include
using namespace std;
void Hello::print()
{
cout<<”Hello, welcome to Redhat Linux os!”<
- hello.h