难以在不同文件中实现类(链接器错误)

时间:2015-03-30 14:02:11

标签: class header linker

请帮助我们收到“链接器错误(对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");







}

0 个答案:

没有答案