--- test.cpp ---
#include <iostream>
class A {
public:
// default constructor.
// not implemented.
A();
void helloworld()
{
std::cout << "Hello World!" << std::endl;
}
};
int main(int argc, char *argv[])
{
A a;
a.helloworld();
}
上記をコンパイルすると、下記のようになる。実装がないので、リンカから見えない。以下の結果は当然の帰結である。
$ g++ test.cpp
/tmp/ccIVHTVA.o: In function `main':
a.cpp:(.text+0x74): undefined reference to `A::A()'
collect2: ld はステータス 1 で終了しました
0 件のコメント:
コメントを投稿