请帮助我们收到“链接器错误(对burito :: burito()的未定义引用) 我不能在不同的文件中实现类别
burito.cpp文件
#include<iostream>
#include "burito.h"
using namespace std;
burito::burito()
{
cout<<"hello everybody";
}
burito.h文件
#ifndef BURITO_H
#define BURITO_H
class burito
{
public:
burito();
};
#endif
class_test.cpp文件
#include<iostream>
#include "burito.h"
using namespace std;
int main()
{
burito bo;
return 0;
system("PAUSE");
}