c++ 编译多个c++文件

本文介绍了如何在C++中编译包含头文件、实现文件和主文件的多个源文件。头文件负责声明结构体和函数,实现文件包含函数的具体实现并引入头文件,主文件调用函数并同样引入头文件。
摘要由CSDN通过智能技术生成

38 compile many files

  • header file:declaration : .h, have struct and function name

  • implementation file, .cpp, inside cpp must include header file, only have function

  • main file: calling, .cpp inside cpp must include header file, only have main

    // file name: math_stuff.cpp
    #include "math_utils.h"
    
    double area(double length, double width)
    {
      return length * width;
    }
    
    double area(double length)
    {
      return length * length;
    }
    
    double area(Rectangle rectangle)
    {
      return rectangle.length * rectangle.width;
    }
    
    double pow(double base, int pow)
    {
      int total = 1;
      for(int i = 0; i < pow; i++)
      {
        total *= base; 
      }
      return total;
    }
    
    // file name: math_utils.cpp
    #include "math_utils.h"
    
    double area(double length, double width)
    {
      return length * width;
    }
    
    double area(double length)
    {
      return length * length;
    }
    
    double area(Rectangle rectangle)
    {
      return rectangle.length * rectangle.width;
    }
    
    double pow(double base, int pow)
    {
      int total = 1;
      for(int i = 0; i < pow; i++)
      {
        total *= base; 
      }
      return total;
    }
    
    // file name: math_utils.h
    #ifndef MATH_UTLIS
    #define MATH_UTLIS
    struct Rectangle
    {
      double length;
      double width;
    };
    
    double area(double length, double width);
    
    double area(double length);
    
    double area(Rectangle rectangle);
    
    double pow(double base, int pow = 2);
    
    #endif
    
    // linux: compile
    	// method1:
        //  g++ math_stuff.cpp math_utils.cpp
    	//  ./a.out
    	// method2: can complie each intermeidate step
    	//  g++ -c math_stuff.cpp math_utils.cpp
    	//  g++ math_stuff.o math_utils.o
    	//  ./a.out
    
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值