函数
作用:将一段经常使用的代码封装起来,减少重复代码。
一个较大的程序,一般分为若干个程序块,每个模块实现特定的功能
函数的定义
一般有5个步骤:
1.返回值类型:一个函数可以返回一个值,在函数定义中
2.函数名:给函数起个名称
3.参数表列:使用该函数时,传入的数据
4.函数体结构:花括号内的代码,函数内需要执行的语句
5.return表达式:和返回值类型挂钩,函数执行完后,返回相应的数据
语法:返回值类型 函数名(参数列表){
函数体语句
return表达式
}
#include<iostream>
using namespace std;
//实现一个加法函数,功能是传入俩个整数数据,计算数据相加的结果并且返回
int add(int num1,int num2) {
int sum = num1 + num2;
return sum;
}
int main() {
system("pause");
return 0;
}
函数调用
功能:使用定义好的函数
语法:函数名(参数)
#include<iostream>
using namespace std;
//实现一个加法函数,功能是传入俩个整数数据,计算数据相加的结果并且返回
//函数定义的时候,num1和2并没有真是数据,他只是一个形式上的参数,为形参
int add(int num1, int num2) {
int sum = num1 + num2;
return sum;
}
int main() {
int a = 10;
int b = 20;
//main函数中调用add函数
//a和b成为实际参数,简称实参
//当调用函数时,实参的值会传递给形参
int c= add(a, b);
cout << c << endl;
system("pause");
return 0;
}//总结:函数定义里小括号内称为形参,函数调用时传入的参数称为实参
值传递
所谓值传递,就是函数调用时实参将数值传给形参
值传递时,如果形参发生变化,并不会影响实参
#include<iostream>
using namespace std;
//定义函数,两个数字进行交换
void swap(int num1, int num2) {
cout << "交换前:" << endl;
cout << "num1=" << num1 << endl;
cout << "num2=" << num2 << endl;
int temp = num1;
num1 = num2;
num2 = temp;
//return;返回值不需要不需要return,因为void
cout << "交换后:" << endl;
cout << "num1=" << num1 << endl;
cout << "num2=" << num2 << endl;
}
int main() {
int a = 10;
int b = 20;
swap(a, b);
system("pause");
return 0;
}
函数的常见样式
1.无参无返
2.有参无返
3.无参无返
4.有参有返
#include<iostream>
using namespace std;
//无参无返
void test01() {
cout << "this is test01" << endl;
}
//有参无返
void test02(int a) {
cout << "this is test02 a ="<<a << endl;
}
//无参有返
int test03() {
cout << "this is test03" << endl;
return 1000;
}
//有参有返
int test04(int a) {
cout << "this is test04" << endl;
return a;
}
int main() {
//无参无返调用
test01();
//有参无返
test02(100);
//无参有返
int num1=test03();
cout << num1 << endl;
//有参有返
int num2=test04(20);
cout << num2 << endl;
system("pause");
return 0;
}
函数的声明
作用:告诉编译器函数名称以及如何调用函数,函数的实际主体可以单独定义。
PS:函数的声明可以多次,但是函数的定义只能有一次
#include<iostream>
using namespace std;
//函数的声明
//比较两个整型的数字比较,并返回最大的数
int max(int a, int b);//把函数写在main函数后面时,提前声明.声明可以写多次,但是定义只能写一次
int main() {
int a = 10;
int b = 20;
cout << max(a, b) << endl;
system("pause");
return 0;
}
int max(int a, int b) {
return a > b ? a : b;
}
函数的分文件编写
作用:让代码结构更加清晰
函数分文件编写一般分为4个步骤:
1.创建后缀名为.h的头文件
2.创建后缀名为.cpp的源文件
3.在头文件中写函数的声明
#include<iostream>
using namespace std;
//实现两个数字交换的函数
void swap(int a, int b);//函数的声明
4.在源文件中写函数的定义
#include "swap.h"
void swap(int a, int b) {
int temp = a;
a = b;
b = temp;
cout << "a=" << a << endl;
cout << "b=" << b << endl;
}//函数的定义
整体代码为:
#include<iostream>
#include"swap.h"
using namespace std;
//实现两个数字交换的函数
void swap(int a, int b);//函数的声明
void swap(int a, int b) {
int temp = a;
a = b;
b = temp;
cout << "a=" << a << endl;
cout << "b=" << b << endl;
}//函数的定义
int main() {
int a = 10;
int b = 20;
swap(a, b);
system("pause");
return 0;
}//函数调用