两个错误,都是关于CStudent类的,error C2572:'CStudent::CStudent' :redefi

问题描述:

两个错误,都是关于CStudent类的,error C2572:'CStudent::CStudent' :redefinition of default parameter :parameter 1
see declaration of 'CStudent::CStudent'
1个回答 分类:综合 2014-12-12

问题解答:

我来补答
你是这样写的吧,默认参数就是那个a = 10,声明的时候写上即可,定义的时候去掉
class Student
{
public:
\x09int age;
\x09Student(int a = 10);
};
Student::Student(int a = 10)
{
}
改法:
Student::Student(int a )
{
}
 
 
展开全文阅读
剩余:2000
上一页:
下一页:判断题。