c++函数的分文件编写

步骤

1. 创建.h后缀名的头文件
2. 创建.cpp后缀名的源文件
3. 在头文件中写函数的声明
4. 在源文件中写函数的定义
5. 在其他程序文件中使用该函数

  1. 创建.h后缀名的头文件
    c++函数的分文件编写_第1张图片
  2. 创建.cpp后缀名的源文件
    c++函数的分文件编写_第2张图片
  3. 在头文件中写函数的声明
#pragma once
#include
using namespace std;

//函数的声明
void swap(int &a,int &b);
  1. 在源文件中写函数的定义
#include"swap.h"

//函数的定义
void swap(int &a, int &b) {
	int t;
	t = a;
	a = b;
	b = t;
}
  1. 在其他程序文件中使用该函数
    c++函数的分文件编写_第3张图片
#include
#include"swap.h"
using namespace std;
//函数的分文件编写

int main() {
	int a = 1, b = 2;
	swap(a, b);
	cout << a << " " << b << endl;
	system("pause");
	return 0;
}

你可能感兴趣的:(c++)