C++ 中的默认参数
在本文档中,我们将讨论一个程序来了解 C++ 中的默认参数。
默认参数是在调用者语句未为它们提供任何值的情况下提供给被调用函数的参数。
示例
#include<iostream> using namespace std; //function defined with default arguments int sum(int x, int y, int z=0, int w=0){ return (x + y + z + w); } int main(){ cout << sum(10, 15) << endl; cout << sum(10, 15, 25) << endl; cout << sum(10, 15, 25, 30) << endl; return 0; }
输出
25 50 80
广告