我是新手,用C++編寫頭文件。這是我當前的代碼:如何在C++中鏈接頭文件
//a.h
#ifndef a_H
#define a_H
namespace hello
{
class A
{
int a;
public:
void setA(int x);
int getA();
};
}
#endif
//a.cpp
#include "a.h"
namespace hello
{
A::setA(int x)
{
a=x;
}
int A::getA()
{
return a;
}
}
//ex2.cpp
#include "a.h"
#include<iostream>
using namespace std;
namespace hello
{
A* a1;
}
using namespace hello;
int main()
{
a1=new A();
a1->setA(10);
cout<<a1->getA();
return 1;
}
當我試着使用g++ ex2.cpp
編譯它,我得到這個錯誤:
In function `main':
ex2.cpp:(.text+0x33): undefined reference to `hello::A::setA(int)'
ex2.cpp:(.text+0x40): undefined reference to `hello::A::getA()'
collect2: ld returned 1 exit status
爲什麼沒有工作,我怎麼能解決這個問題?
請使用源代碼格式化功能,請單擊編輯器中的「101 010」圖標。 – mikerobi 2010-09-27 14:20:02
您在a.cpp文件中忘記了'A :: setA'前面的'void'。 – 2010-09-27 14:22:42