この例は、これから取り上げる資料から引用しています。教科書によると、ここでは万事順調です。
しかし、これらのファイルをコンパイルしようとすると、問題が発生します (以下を参照)。
3 ファイル
Date.cpp:
#include "Date.h"
Date::Date()
{
setDate(1,1,1900);
}
Date::Date(int month, int day, int year)
{
setDate(month, day, year);
}
Date.h:
class Date
{
public:
Date ();
Date (int month, int day, int year);
void setDate(int month, int day, int year);
private:
int m_month;
int m_day;
int m_year;
};
Main.cpp:
#include "Date.h"
int main ()
{
Date d1 ;
return 1;
}
でコンパイルしようとするとg++ *
、
Undefined symbols for architecture x86_64:
"Date::setDate(int, int, int)", referenced from:
Date::Date() in cc8C1q6q.o
Date::Date() in cc8C1q6q.o
Date::Date(int, int, int) in cc8C1q6q.o
Date::Date(int, int, int) in cc8C1q6q.o
ld: symbol(s) not found for architecture x86_64
collect2: error: ld returned 1 exit status
代わりに宣言Date *d;
すると、プログラムがコンパイルされます。代わりに宣言Date *d = new Date
すると、プログラムは失敗します。
ここで何が起こっているのですか?