1.步骤
第一步:创建一个后缀为.h的头文件
第二步:创建一个后缀为.cpp的源文件
第三步:在xxx.h头文件中写函数声明
第四步:在xxx.cpp中写函数定义
第五步:在main函数所在源文件中写xxx.h头文件,调用函数
2.实现
头文件:
xxx.h
#include<iostream>
using namespace std;
void fuc();
源文件:
xxx.cpp
#include "xxx.h"
void fuc(){
cout << "hello world" << endl;
}
main.cpp
#include<iostream>
#include "xxx.h"
using namespace std;
int main(){
fuc();
return 0;
}