---- test.h ----
#ifndef __TEST_H__
#define __TEST_H__
class A {
public:
static void hoge();
};
#endif // end of __TEST_H__
---- test.cpp ----
#include "test.h"
void hoge() {
return;
}
---- main.cpp ----
#include "test.h"
int main(int argc, char* argv[])
{
A::hoge();
return 0;
}
以下の実行結果は最早おなじみである。
$ g++ main.cpp test.cpp
/tmp/ccSUS3Oq.o: In function `main':
main.cpp:(.text+0x12): undefined reference to `A::hoge()'
collect2: ld はステータス 1 で終了しました
0 件のコメント:
コメントを投稿