标签: c++
我不确定这个问题在做什么。因此,我要做的就是在此程序中创建对象的新实例。我收到对Cat::Cat()的未定义引用,我不知道为什么。
Cat::Cat()
using namespace std; class Cat { public: Cat (); void purr (); void sleep (); }; int main () { Cat cat; }