黑马:函数高级(95~98)

1.函数默认参数
在c++中,函数的形参列表中的形参可以有默认值
#include
using namespace std;
#include
#include
#include
#include
#include #include //标准算法头文件
#include
#include

#include
#include
#include
#include
#include
#include
#include

int func(int a, int b=20, int c=30) {
return a + b + c;
}

//注意事项

//1.如果某个位置已经有了默认参数,那么之后的参数都必须有默认值
// (int a,int b=10) 可以
// (in

黑马:函数高级(95~98)最先出现在Python成神之路

版权声明:
作者:玉兰
链接:https://www.techfm.club/p/3972.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>