C++ 类的声明和定义怎样放在两个文件里,通过编译呀?
//test.h#ifndefTEST_H_INCLUDED#defineTEST_H_INCLUDEDclassA{public:voidfun1();voidfun2...
//test.h
#ifndef TEST_H_INCLUDED
#define TEST_H_INCLUDED
class A
{
public:
void fun1();
void fun2();
};
#endif // TEST_H_INCLUDED
//test.cpp
#include "test.h"
#include <iostream>
using namespace std;
void A::fun1()
{
cout<< "hello"<<endl;
}
//main.cpp
#include <iostream>
#include "test.h"
using namespace std;
int main(void)
{
A *a = new A;
a->fun1();
cout << "Hello world!" << endl;
return 0;
}
//error
D:\CPROJECTS\0003\main.cpp|9|undefined reference to `A::fun1()'| 展开
#ifndef TEST_H_INCLUDED
#define TEST_H_INCLUDED
class A
{
public:
void fun1();
void fun2();
};
#endif // TEST_H_INCLUDED
//test.cpp
#include "test.h"
#include <iostream>
using namespace std;
void A::fun1()
{
cout<< "hello"<<endl;
}
//main.cpp
#include <iostream>
#include "test.h"
using namespace std;
int main(void)
{
A *a = new A;
a->fun1();
cout << "Hello world!" << endl;
return 0;
}
//error
D:\CPROJECTS\0003\main.cpp|9|undefined reference to `A::fun1()'| 展开
2个回答
2011-03-27
展开全部
在test.cpp中包含头文件时使用的是相对路径,只要加上test.h相对于此文件夹的路径即可,
或者在编译器里设置#include的文件夹路径。比如test.h在test.cpp所在文件夹的上一级(父文件夹),可以这么做:#include "../test.h"
或者在编译器里设置#include的文件夹路径。比如test.h在test.cpp所在文件夹的上一级(父文件夹),可以这么做:#include "../test.h"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询