当前位置: 首页 > 知识库问答 >
问题:

G对类::函数的未定义引用[重复]

施子民
2023-03-14

我终于绝望了。所以,在我的c课上,我们被指示使用类。我们会让头文件声明类和函数,而另一个单独的. cpp文件实现它。事情应该是有效的,但他们没有,网上没有解决方案似乎对我有用。为此,我在linux上使用了G编译器,它似乎在IDE或普通命令行上都无法工作。

我在笔记本上看到的错误。h是这样的:

/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
/tmp/ccxqI6An.o: In function `TBook::TBook()':
TBook.cpp:(.text+0x3b): undefined reference to `Telephone::Telephone()'
TBook.cpp:(.text+0x100): undefined reference to `Telephone::Telephone()'
TBook.cpp:(.text+0x132): undefined reference to `Telephone::allNum(std::basic_string<char, std::char_traits<char>, std::allocator<char> >)'
TBook.cpp:(.text+0x182): undefined reference to `Telephone::~Telephone()'
TBook.cpp:(.text+0x191): undefined reference to `Telephone::~Telephone()'
TBook.cpp:(.text+0x2b3): undefined reference to `Telephone::~Telephone()'
TBook.cpp:(.text+0x2e6): undefined reference to `Telephone::~Telephone()'
TBook.cpp:(.text+0x2fa): undefined reference to `Telephone::~Telephone()'
/tmp/ccxqI6An.o:TBook.cpp:(.text+0x370): more undefined references to `Telephone::~Telephone()' follow
/tmp/ccxqI6An.o: In function `TBook::write()':
TBook.cpp:(.text+0x4e1): undefined reference to `Telephone::getNumber()'
TBook.cpp:(.text+0x506): undefined reference to `Telephone::getAreaCode()'
TBook.cpp:(.text+0x53a): undefined reference to `Telephone::getName()'
/tmp/ccxqI6An.o: In function `TBook::lookup(std::basic_string<char, std::char_traits<char>, std::allocator<char> >)':
TBook.cpp:(.text+0x6d4): undefined reference to `Telephone::getName()'
TBook.cpp:(.text+0x79e): undefined reference to `Telephone::Telephone(int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >)'
/tmp/ccxqI6An.o: In function `TBook::print()':
TBook.cpp:(.text+0x880): undefined reference to `Telephone::getName()'
TBook.cpp:(.text+0x8e0): undefined reference to `Telephone::getNumber()'
TBook.cpp:(.text+0x8ff): undefined reference to `Telephone::getAreaCode()'
collect2: ld returned 1 exit status
[Finished in 0.3s with exit code 1]

我有点不喜欢该文件没有接收任何电话类的方法。下面是TBook的代码。h:

#ifndef TBOOK_H
#define TBOOK_H

#include "Telephone.h"

class TBook{
private:
    Telephone rolodex[10]; 
    int current;
    int max;
public:
    TBook();
    ~TBook();
    void add(Telephone);
    void write();
    bool is_full();
    void print();
    void check();
    Telephone lookup(string);

};

#endif

这就是TBook.cpp的样子:

#include <iostream>
#include <fstream>
#include <string>

#include "TBook.h"
#include "Telephone.h"


using namespace std;

TBook::TBook(){
    current = 0;
    max = 9;

    cout << "Hello" << endl;

    string line;
    ifstream myfile ("rolodex.txt");
    if (myfile.is_open()){
        while ( getline (myfile,line) ){
            cout << line << endl;
            Telephone t;
            t.allNum(line);
            add(t);

        }
        myfile.close();
    }else if (!myfile.is_open()){
        ofstream myfile;
        myfile.open ("rolodex.txt");
        myfile << "This is an empty file (Relatively).";
        myfile.close();
    }
}

TBook::~TBook(){

}

void TBook::add(Telephone tel){
    if (!is_full()){
        rolodex[current] = tel;
        current++;
    }
}

void TBook::write(){
    ofstream myfile;
    myfile.open ("rolodex.txt");
    for (int i = 0; i < current; ++i)
    {
        myfile << rolodex[i].getName() << "," << rolodex[i].getAreaCode() << "," << rolodex[i].getNumber() << "\n";
    }
    myfile.close();
}

bool TBook::is_full(){
    if (current <= max){
        return false;
    }
    return true;
}

Telephone TBook::lookup(string lookName){
    for (int i = 0; i < current; ++i){
        if (rolodex[i].getName() == lookName){
            return rolodex[i];
        }
    }
    return Telephone(100, "", "1000000");
}

void TBook::print(){
    //Print the vairables
    for (int i = 0; i < current; ++i){
        cout << "Name: " << rolodex[i].getName() << endl;
    cout << "Number: (" <<  rolodex[i].getAreaCode() << ") " << rolodex[i].getNumber() << endl;
    }

}

void TBook::check(){
    cout << "the message" << endl;
}

既然问题似乎是由电话类引起的,我想我也应该显示该代码

电话. h

..

#ifndef TELEPHONE_H
#define TELEPHONE_H

#include <iostream>
#include <string>


using std::string;

class Telephone{
private:
    string name;
    string num;
    int areaCode;
public:
    Telephone(int, string, string);
    Telephone();
    ~Telephone();
    bool setAreaCode(int);

    //Setters

    void setName(string);
    void setNumber(string);
    bool allNum(string);

    //Getters
    string getName();
    string getNumber();
    int getAreaCode();

    //Checks
    bool checkX(int);
    bool checkY(int);


};

#endif

电话cpp

..

#include <iostream>
#include <string>
#include <stdio.h>
#include <stdlib.h>

#include "Telephone.h"

using namespace std;

Telephone::Telephone(){
    areaCode = 0
    name = "";
    num = "";
}

Telephone::Telephone(int aCode, string nam, string number){
   areaCode = aCode;
   name = name;

}

Telephone::~Telephone(){
    //Nope Nada
}

bool Telephone::allNum(string all){
    size_t found =  all.find_first_of(",");

    //
    string first = all.substr(0, found);
    string second = all.substr((found)+1, found+1);
    string third = all.substr( all.find_last_of(",")+1, all.length());
    int x, y;
    //convert string to int values
    if(third.length() == 7){
        x = atoi(third.substr(0,3).c_str()), 
        y = atoi(third.substr(3,4).c_str());
    }else{
        cerr << "Your phone number is not valid" << endl;
    }   
    int ac = atoi(second.substr(0, second.length()).c_str());

    setName(first);
    if (!setAreaCode(ac)){  
        setAreaCode(100);
        return true;

    }
    if (!checkX(x) || !checkY(y)){
            setNumber("1000000");
        }else{
            setNumber(third);
    }

    cerr << "The info provided is not valid" << endl;
    return false;
}

void Telephone::setNumber(string number){
    num = number;
}

bool Telephone::setAreaCode(int aCode){
    if(aCode >= 100 && aCode <= 999){
        areaCode = aCode;
        return true;
    }
    return false;
}

void  Telephone::setName(string theName){
    name = theName;
}

bool Telephone::checkX(int x){
    if(x >= 100 && x <= 999){
        return true;
    }
    cerr << "First three digits are not valid" << endl;
    return false;
}

bool Telephone::checkY(int y){
    if(y >= 0000 && y <= 9999){
        return true;
    }
    cerr << "Last four digits are not valid" << endl;
    return false;
}



//Getters
string Telephone::getName(){
    return name;
}

string Telephone::getNumber(){
    return num;
}

int Telephone::getAreaCode(){
    return areaCode;
}

我的主文件(也称为test.cpp)是这样的:

test.cpp

#include <iostream>
#include <string>
#include "TBook.h"
#include "Telephone.h"

using namespace std;


int main(int argc, char const *argv[])
{
    //Create a Rolodex
    TBook addressBook;

    return 0;
}

我在测试中也遇到了这个错误。cpp

/tmp/ccl8anRb.o: In function `main':
test.cpp:(.text+0x24): undefined reference to `TBook::TBook()'
test.cpp:(.text+0x38): undefined reference to `TBook::~TBook()'
collect2: ld returned 1 exit status

我认为这主要是一个编译错误,但我仍然不确定,我觉得我是“我的代码不工作,我不知道为什么”的迷因通常我会猛击代码并尝试不同的方法,直到它工作为止,但我根本没有时间。因此,我需要你的帮助。

共有1个答案

通俊发
2023-03-14

这是一个链接器错误。尝试:

g++ test.cpp Telephone.cpp -o test

基本上,链接器正在抱怨您使用但没有提供实现的函数。要查看编译器为您执行的所有步骤,请输入-v:

g++ -v test.cpp Telephone.cpp -o test
 类似资料:
  • 问题内容: 我正在使用Linux,并且具有以下文件: 该函数在中声明和定义。我需要在中使用该函数,因此我将该函数声明为 在。 但是,在编译过程中,我得到了错误 怎么了? 谢谢。 预计到达时间:多亏了我收到的答案,我现在有了以下内容: 在fileA.h中,我有 在fileA.c中,我有 在fileB.h中,我有 在fileB.cpp中,我有 但是,我现在有错误 问题答案: 如果您确实是使用C而不是C

  • 我得到一个 据我所知,构造函数是被定义的,但是编译器显然看不到它。我唯一的结论是存在某种包含问题(例如,循环包含)。 我已经为下面的每个翻译单元制作了一个包含图,但是我看不出有任何问题。任何指导都将不胜感激。 包括:

  • 我正在遵循这个教程。我和和完美(就我所知)。但是,当我尝试编译示例代码时······ ...用他的链接标志...

  • 我已经运行了<code>智能安装php5 mysql</code>(并重新启动了mysql/Apache 2),但我仍然收到这个错误: 致命错误:第21行调用/home/validate.php中未定义的函数mysql_connect() 表示 /etc/php5/apache2/conf.d/pdo_mysql.ini文件已被解析。

  • 问题内容: 这个问题已经在这里有了答案 : 致命错误:调用未定义的函数session_register() (3个答案) 7年前关闭。 请大家帮助我! 为什么我无法登录,并且出现此错误: 致命错误:在第27行的C:\ xampp \ htdocs * \ proses1.php中调用未定义的函数session_register() 这个proses1.php代码: 问题答案: 该功能不再存在于PH