5
aludra.usc.edu(25): g++ -o final.out final.cpp
未定义的第一个引用
 文件中的符号
数据::Get_Networth() /var/tmp//ccUz9c59.o
数据::Set_Networth(double) /var/tmp//ccUz9c59.o
数据::Get_Heightfeet() /var/tmp//ccUz9c59.o
数据::Get_Lettergpa() /var/tmp//ccUz9c59.o
数据::Set_Weight(int) /var/tmp//ccUz9c59.o
数据::Get_Weight() /var/tmp//ccUz9c59.o
数据::Get_Major() /var/tmp//ccUz9c59.o
数据::Set_Gpa(double) /var/tmp//ccUz9c59.o
数据::Get_GPA() /var/tmp//ccUz9c59.o
数据::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
数据::Set_Heightinches(int) /var/tmp//ccUz9c59.o
数据::数据() /var/tmp//ccUz9c59.o
数据::Get_Name() /var/tmp//ccUz9c59.o
数据::Get_Heightinches() /var/tmp//ccUz9c59.o
ld:致命:符号引用错误。没有输出写入 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;
}

任何帮助,将不胜感激。

4

1 回答 1

7

您似乎没有在编译或链接data.cpp. 尝试

g++ -o final.out final.cpp data.cpp
于 2012-04-29T04:53:08.943 回答