【C++学习】函数
Published in:2024-08-10 | category: C++
Words: 179 | Reading time: 1min | reading:

基础注意事项

函数的声明可以多次,但是函数的定义只能有一次

函数的分文件编写

  1. 创建头文件
  2. 创建函数.cpp文件
  3. 在头文件里写函数的声明
  4. 在.cpp文件里写函数的定义
1
2
3
4
5
6
//swap.h文件
#include<iostream>
using namespace std;

//实现两个数字交换的函数声明
void swap(int a, int b);
1
2
3
4
5
6
7
8
9
10
11
12
//swap.cpp文件
#include "swap.h"

void swap(int a, int b)
{
int temp = a;
a = b;
b = temp;

cout << "a = " << a << endl;
cout << "b = " << b << endl;
}
1
2
3
4
5
6
7
8
9
10
11
12
//main函数文件
#include "swap.h"
int main() {

int a = 100;
int b = 200;
swap(a, b);

system("pause");

return 0;
}
Prev:
【C++学习】指针
Next:
【C++学习】数组