我有一个关于指向类的指针的问题。我的意思是在提供类中我想创建一个Course * sample
指针,顺便说一下 course 也是另一个接受一个 int 参数的类,然后试图通过sample=new Course;
但我得到一个错误其中说:
Offering.cpp:12:19: error: no matching function for call to ‘Course::Course()’
Offering.cpp:12:19: note: candidates are:
lib.h:63:5: note: Course::Course(int)
lib.h:63:5: note: candidate expects 1 argument, 0 provided
有谁知道我错在哪里?不管怎么说,还是要谢谢你。