课程
/后端开发
/C++
/数据结构探险—队列篇
总是在这里报错,大家帮我看下,谢谢!
2019-03-09
源自:数据结构探险—队列篇 5-1
正在回答
缺省值在Customer类的构造函数的声明中写就可以了。
譬如:
Customer(string name = "",int age = 0);
在.cpp文件中实现Customer构造函数如下:
Customer:Customer(string name,int age){
}
蜡笔小方哎 提问者
举报
与现实最为贴近的数据结构-队列,带大家进入数据结构的美妙世界
1 回答在new Customer对象数组的时候,为什么需要默认构造函数?
4 回答编译报no matching function for call to Customer::Customer()
1 回答为什么要把int数据类型修改成customer?
1 回答MyQueue.cpp的构造函数第二行代码报错:[Error] no matching function for call to 'Customer::Customer()',请问怎么修改
4 回答customer作为队列元素时不用删除指针p吗?