使用 G++ 编译多个 .cpp 和 .h 文件


要同时编译多个文件,例如 file_name.h 或 file_name.cpp,我们一次可以使用列表形式的文件。语法如下 −

g++ abc.h xyz.cpp

要运行程序,我们可以使用 −

./a.out

示例

float area(float r){
   return (3.1415*r*r); //area of a circle
}
float area(float l, float w){
   return (l * w); //area of a rectangle
}

示例

#include <iostream>
#include "area.h"
using namespace std;
main(){
   cout << "Area of circle with radius 2.5 is: " << area(2.5) << endl;
   cout << "Area of rectangle with length and width are 5 and 7 is: " << area(5, 7) << endl;
}

输出

$ g++ area.h find_area.cpp
$ ./a.out
Area of circle with radius 2.5 is: 19.6344
Area of rectangle with length and width are 5 and 7 is: 35
$

更新于: 30-Jul-2019

5K+ 浏览

开启您的 职业生涯

完成课程获得认证

开始使用
广告
© . All rights reserved.