aludra.usc.edu(25): g++ -o final.out final.cpp 未定義の最初の参照 ファイル内のシンボル データ::Get_Networth() /var/tmp//ccUz9c59.o data::Set_Networth(double) /var/tmp//ccUz9c59.o データ::Get_Heightfeet() /var/tmp//ccUz9c59.o データ::Get_Lettergpa() /var/tmp//ccUz9c59.o data::Set_Weight(int) /var/tmp//ccUz9c59.o data::Get_Weight() /var/tmp//ccUz9c59.o データ::Get_Major() /var/tmp//ccUz9c59.o data::Set_Gpa(double) /var/tmp//ccUz9c59.o データ::Get_GPA() /var/tmp//ccUz9c59.o data::Set_Age(int) /var/tmp//ccUz9c59.o データ::Get_Age() /var/tmp//ccUz9c59.o data::Set_Major(std::basic_string, std::allocator >)/var/tmp//ccUz9c59.o data::Set_Data(std::basic_string, std::allocator >, int, int, int, double, std::basic_string, std::allocator >, double)/var/tmp//ccUz9c59.o データ::Get_Heightfeetremainder() /var/tmp//ccUz9c59.o data::Set_Heightinches(int) /var/tmp//ccUz9c59.o データ::データ() /var/tmp//ccUz9c59.o data::Get_Name() /var/tmp//ccUz9c59.o data::Get_Heightinches() /var/tmp//ccUz9c59.o ld: fatal: シンボル参照エラー。final.out に出力が書き込まれません collect2: ld が 1 つの終了ステータスを返しました
これは、Solaris でコンパイルするときに g++ で取得し続けるものです。コードは VS2010 で完全にコンパイルされます。だから私は何がうまくいかないのか理解できません。
これが私のクラスファイルのコードdata.hです:
#include <string>
using namespace std;
class data{
private:
string name;
int age;
int heightinches, heightfeet ,heightfeetremainder;
int weight;
double gpa;
char lettergpa;
string major;
double networth;
public:
//constructors
data();
//service functions
void Calc_heightfeet();
void Calc_lettergpa();
//Getter/Accessor functions
string Get_Name();
int Get_Age();
int Get_Heightinches();
int Get_Heightfeet();
int Get_Heightfeetremainder();
int Get_Weight();
double Get_GPA();
char Get_Lettergpa();
string Get_Major();
double Get_Networth();
//Setter/modifier functions
void Set_Data(string ,int , int ,int , double,string,double);
void Set_Age(int );
void Set_Heightinches(int );
void Set_Weight(int );
void Set_Major(string );
void Set_Gpa(double );
void Set_Networth(double );
};
データ.cpp:
#include "data.h"
using namespace std;
//constructors
data::data(){;}
//service functions
void data::Calc_heightfeet()
{
heightfeet= heightinches/12;
heightfeetremainder= heightinches%12;
}
void data::Calc_lettergpa()
{
if (gpa > 3.5)
lettergpa= 'A';
else if (gpa > 2.5)
lettergpa= 'B';
else if (gpa > 1.5)
lettergpa= 'C';
else if (gpa > .5)
lettergpa= 'D';
else
lettergpa= 'F';
}
//Getter/Accessor functions
string data::Get_Name()
{
return name;
}
int data::Get_Age()
{
return age;
}
int data::Get_Heightinches()
{
return heightinches;
}
int data::Get_Heightfeet()
{
return heightfeet;
}
int data::Get_Heightfeetremainder()
{
return heightfeetremainder;
}
int data::Get_Weight()
{
return weight;
}
double data::Get_GPA()
{
return gpa;
}
char data::Get_Lettergpa()
{
return lettergpa;
}
string data::Get_Major()
{
return major;
}
double data::Get_Networth()
{
return networth;
}
//Setter/modifier functions
void data::Set_Data(string n,int a, int h,int w, double g,string m,double net)
{
name=n;
age=a;
heightinches=h;
weight=w;
major=m;
networth=net;
gpa=g;
Calc_heightfeet();
Calc_lettergpa();
}
void data::Set_Age(int a)
{
age=a;
}
void data::Set_Heightinches(int h)
{
heightinches=h;
Calc_heightfeet();
}
void data::Set_Weight(int w)
{
weight=w;
}
void data::Set_Major(string m)
{
major=m;
}
void data::Set_Gpa(double g)
{
gpa=g;
Calc_lettergpa();
}
void data::Set_Networth(double net)
{
networth=net;
}
どんな助けでも大歓迎です。