对另一个函数中使用的异常的未定义引用

时间:2014-03-23 18:08:55

标签: c++ undefined-reference

我做了一个程序。不幸的是,在尝试构建它时,我在函数中遇到了错误:对RzymArabException :: RzymArabException(std :: string)的未定义引用。 当我抛出一个类似Rzym {}的简单类时;没有错误。但是当我创建一个带有某种类型数据的类(内部的构造函数和消息不起作用)时,如果你能指出错误的位置,我将不胜感激。

#include <iostream>
#include <string>

using namespace std;

class RzymArabException{                      //wyjatki
    private:
        string message;
        int pozazakres;
    public:
        RzymArabException(string message);
        RzymArabException(int pozazakres);
        string getMessage(){return message;};   

};



class RzymArab {
    private:
        static string rzym[13];              //konwersja z arabskich na rzymskie 
        static int arab[13];

        static char rzymskie[7];
        static int arabskie[7];              //konwersja z rzymskich na arabskie
    public:
        static int rzym2arab(string);
        static string arab2rzym(int);
};


string RzymArab::rzym[13] = {"I","IV","V","IX","X","XL","L","XC","C","CD","D","CM","M"};
int RzymArab::arab[13] = {1,4,5,9,10,40,50,90,100,400,500,900,1000};

int RzymArab::arabskie[7] = {1000,500,100,50,10,5,1};
char RzymArab::rzymskie[7] = {'M','D','C','L','X','V','I'};

 string RzymArab::arab2rzym(int x){
        string s="";
     if(x<1 || x>3999)
        throw RzymArabException("Podana liczba w zapisie arabskim nie nalezy do dozwolonego przedzialu:(1..3999)");
     else{
        int i=12;

        while(x>=1){
            if(x>=arab[i]){
                x-=arab[i];
                s=s+rzym[i];
            }
            else
                i-=1;
        }
        }       
    return s;

}

2 个答案:

答案 0 :(得分:1)

您需要为异常类方法提供定义,以便正确链接:

class RzymArabException{                      //wyjatki
private:
    string message;
    int pozazakres;
public:
    // Note the changes for the constructor methods!
    RzymArabException(string message_) : message(message_) {}
    RzymArabException(int pozazakres_) : pozazakres(pozazakres_) {}
    string getMessage(){return message;}   

};

另外,我建议派生任何用作异常的类来派生自std::exception

class RzymArabException : public std::exception {
private:
    string message;
    int pozazakres;
public:
    // ...
    // Instead of getMessage() provide the what() method
    virtual const char* what() const { return message.c_str(); }   

};

这可确保任何符合标准的代码都能够捕获您的异常而无需使用catch(...)

答案 1 :(得分:0)

这是不言自明的。你没有定义那个构造函数;你只是声明了它。