数组对象调用构造函数
voidDate::get(){cout<<"Inputyear,month,day:";cin>>year>>month>>day;}Employee::Employe...
void Date::get()
{
cout << "Input year,month,day : ";
cin >> year >> month >> day;
}
Employee::Employee(string n, Date b, Date h)
{
name = n;
birthDate = b;
hireDate = h;
}
void getData(Employee a[], int size)
{
string n;
Date b, h;
for (int i = 0; i < size; i++)
{
cout << "name:";
cin >> n;
b.get();
h.get();
a[i](n, b, h); //这样调用为什么不对呢???
}
}
Employee *a=new Employee[size]; 展开
{
cout << "Input year,month,day : ";
cin >> year >> month >> day;
}
Employee::Employee(string n, Date b, Date h)
{
name = n;
birthDate = b;
hireDate = h;
}
void getData(Employee a[], int size)
{
string n;
Date b, h;
for (int i = 0; i < size; i++)
{
cout << "name:";
cin >> n;
b.get();
h.get();
a[i](n, b, h); //这样调用为什么不对呢???
}
}
Employee *a=new Employee[size]; 展开
2个回答
展开全部
a[] 是空阵列, 在没有new Employee(或是初始建构)之前, 是NULL. 当然不能呼叫.
a[i] = new Employee(n, b, h); //才是正确的理解. (我不确定语法是否正确)
a[i] = new Employee(n, b, h); //才是正确的理解. (我不确定语法是否正确)
更多追问追答
追问
没有懂 Employee *a=new Employee[size];我用了啊,然后再调用getData函数的,a[i]=Employee(n, b, h);这样改就行了,但我不理解啊???
追答
new Employee[size] 是新增一个Employee数组, 内容为空. 并不包含实际的Employee.
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询