码迷,mamicode.com
首页 > 编程语言 > 详细

C++自学-默认参数的函数

时间:2018-04-22 21:51:05      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:class   space   window   std   font   fstream   mat   main   参数调用   

在调用函数时,可以不用或使用部分参数调用,不指定的值为函数默认值

#include "stdafx.h"
#include <Windows.h>
#include <iostream>
#include <fstream>
#include <shappmgr.h>
#include <stdio.h>
#include <cmath>

using namespace std;

int add(int a = 2, int b = 4, int c = 6) {
	return a + b + c;
}
int main() {
	int x=add();//全部使用默认参数
	cout << x << endl;
	int y = add(1, 3);//C的值使用默认参数
	cout << y << endl;
	int z=add(1, 3, 5);//全部不使用默认值
	cout << z << endl;
	cin.get();
}

  

C++自学-默认参数的函数

标签:class   space   window   std   font   fstream   mat   main   参数调用   

原文地址:https://www.cnblogs.com/fuRyZ/p/8909171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!