码迷,mamicode.com
首页 > 其他好文 > 详细

[debug]重定义默认參数

时间:2017-06-22 20:56:08      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:函数   span   --   str   .net   public   center   space   声明   

编敲代码过程中遇到重定义默认參数的错误,例如以下例所看到的:

#include<iostream>
#include<stdlib.h>
using namespace std;
class Student
{
private:
	int number;
	char name[10];
public:
	Student(int n = 0, char *s = "no name");
};
Student::Student(int n = 0, char *s = "no name")
{
	number = n;
	strcpy_s(name, s);
}
int main()
{
	Student s1;
	return 0;
}


技术分享

请教他人发现了原因所在:

1:參数的默认值仅仅能够出如今函数声明中不能够出如今函数的定义中,否则会出现參数反复定义默认參数的错误---->>语法规定

    1定义和声明分开:默认值仅仅能够出如今声明中
    2定义和声明不分开,默认值仅仅能出如今定义中

技术分享

例外:(vs2013能够将默认值出如今定义而不出如今声明中)---->>不把标准当回事
例如以下所看到的:

技术分享

经測试,在vc6.0以及Liunx平台下,当定义和声明分开时:默认值仅仅能够出如今声明中

建议编程者还是按标准做得好

[debug]重定义默认參数

标签:函数   span   --   str   .net   public   center   space   声明   

原文地址:http://www.cnblogs.com/yfceshi/p/7067035.html

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