4.3重学C++之【函数声明】
#include<iostream>
using namespace std;
/*
函数的声明,作用是提前告诉编译器函数的存在
函数声明可以有多次(但一般写一次就行),函数定义只能有一次
*/
//函数声明
int get_max_1(int a, int b);
//函数定义
int get_max(int a, int b){
return a>b?a:b;
}
int main(){
cout << get_max(10, 20) <<endl;
cout << get_max_1(10, 20) <<endl;
return 0;
}
//函数定义
int get_max_1(int a, int b){ // 函数定义若在main函数之后,则必须在main函数之前进行声明,否则报错
return a>b?a:b;
}