c++函数
作用:将一段经常使用的代码封装起来,减少重复代码
一个较大的程序,一般分为若干个模块,每一个模块实现特定的功能。
函数的定义:
- 函数定义分为5步:
1.返回值类型
2.函数名
3.参数列表
4.函数体语句
5.return表达式
- 语法:
返回值类型 函数名(参数列表){
函数体语句
return表达式
}
- 实例:
#include<iostream>
using namespace std;
//函数的定义
/*
返回值类型 函数名(参数列表) {
函数体语句
return表达式
}
*/
//加法函数:实现两个整型相加,并且将相加的结果进行返回
int add(int num1,int num2) {
int sum = num1 + num2;
return sum;
}
int main() {
system("pause");
return 0;
}
函数的调用
- 语法:函数名(参数);
- 实例:
#include<iostream>
using namespace std;
//函数的定义
/*
返回值类型 函数名(参数列表) {
函数体语句
return表达式
}
*/
//加法函数:实现两个整型相加,并且将相加的结果进行返回
int add(int num1,int num2) {
//函数定义的时候,num1和num2并不是真的数据,只是一个形式上的参数,简称为形参
int sum = num1 + num2;
return sum;
}
int main() {
//main()函数中调用add函数
int a = 10;
int b = 20;
//a和b是实际参数
//函数调用的语法:函数名称(参数)
//当调用函数的时候,实参会把值传递给形参
int c = add(a,b);
cout << "c = " << c << endl;
a = 100;
b = 5000;
c = add(a, b);
cout << "c = " << c << endl;
system("pause");
return 0;
}
c = 30
c = 5100
请按任意键继续. . .
函数的常见样式
无参无返
有参无返
无参有返
有参有返
#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 100;
}
//有参有返
int test04(int a) {
cout << "this is test04 a = " << a << endl;
return a;
}
int main() {
//无参无返的调用
test01();
//有参无返的调用
test02(100);
int num1 = test03();
cout << "num1 = " << num1 << endl;
//有参有返函数调用
int num2 = test04(10000);
cout << "num2 = " << num2 << endl;
system("pause");
return 0;
}
this is test01
this is test02 a = 100
this is test03
num1 = 100
this is test04 a = 10000
num2 = 10000
请按任意键继续. . .
函数的声明
作用:告诉编译器函数名称以及如何调用函数。函数的实际主体可以单独定义
- 函数的声明可以多次,但是函数的定义只能有一次。
- 实例:
#include<iostream>
using namespace std;
//函数的声明
//比较函数,实现两个整型数字进行比较,返回较大的值
//提前告诉编译器函数的存在,可以利用函数的声明
int max(int a, int b);//函数的声明,声明可以写多次,但是定义函数只能有一次
int max(int a, int b) {
return a > b ? a : b;
}
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;
}
*/
20
请按任意键继续. . .
函数的分文件编写
- 作用:让代码结构更加清晰
- 函数分文件编写有四个步骤:
创建后缀名为.h的头文件
创建后缀名为.cpp的源文件
在头文件中写函数的声明
在源文件中写函数的定义
- 实例:
#include<iostream>
using namespace std;
#include "swap.h"
//函数的分文件编写
//实现两个数字进行交换的函数
//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;
}*/
/*
创建后缀名为.h的头文件
创建后缀名为.cpp的源文件
在头文件中写函数的声明
在源文件中写函数的定义
*/
int main() {
int a = 10;
int b = 20;
swap(a,b);
system("pause");
return 0;
}
swap.h头文件:
#pragma once
#include <iostream>
using namespace std;
void swap(int a, int b);
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;
}
a = 20
b = 10
请按任意键继续. . .
下节:c++指针