我有一个测试类,除了类的骨骼之外,它什么都没有。
H:
#ifndef TEST_H_
#define TEST_H_
class Test
{
public:
Test();
};
#endif /* TEST_H_ */
cpp
#include "test.h"
Test::Test()
{
}
然后在我的主要课程中,我有:
Test *test = new Test();
我还包括 test.h。
我得到错误:
Undefined reference to Test::Test()
谁能告诉我哪里出错了?