类方法的多重定义

Multiple definition of class method

本文关键字:定义 类方法      更新时间:2023-10-16

我有文件long_arithm.cpp:

#ifndef LONG_ARITHM.CPP
#define LONG_ARITHM.CPP
#include <iostream>
#include <list>
namespace long_arithm {
    typedef signed char schar;
    enum { error_char = 127 };
    class longint {
    public:
        longint() : minusSign(0), array() { }
        longint(int num) { fromInt(num); }
        longint(std::string str) { fromString(str); }
        longint(const longint& other) : minusSign(other.minusSign), array(other.array) { }
        void fromInt(int num);
        void fromString(std::string str);
    protected:
        schar digtochar(schar num);
        schar chartodig(schar ch);
        inline bool isDigit(schar ch) { /* code */ }
        inline bool isSpaceChar(schar ch) { /* code */ }
    private:
        bool minusSign;
        std::list<schar> array;
    };
};

void long_arithm::longint::fromInt(int num) {
    /* code */
}
void long_arithm::longint::fromString(std::string str) {
    /* code */
long_arithm::schar long_arithm::longint::digtochar(schar num) {
    /* code */
}
long_arithm::schar long_arithm::longint::chartodig(schar ch) {
    /* code */
}
#endif

现在我正在尝试构建它,但我有错误(第 1 行和第 2 行 - Eclipce 标头):

Building target: long_arithmetics
Invoking: Cross G++ Linker
g++  -o "long_arithmetics"  ./long_arithm.o ./main.o   
./main.o: In function `long_arithm::longint::fromInt(int)':
/home/gxoptg/Документы/My works/Developing/C++/long_arithmetics/Debug/../long_arithm.cpp:153: multiple definition of `long_arithm::longint::fromInt(int)'
./long_arithm.o:/home/gxoptg/Документы/My works/Developing/C++/long_arithmetics/Debug/../long_arithm.cpp:153: first defined here
./main.o: In function `long_arithm::longint::fromString(std::basic_string<char, std::char_traits<char>, std::allocator<char> >)':
/home/gxoptg/Документы/My works/Developing/C++/long_arithmetics/Debug/../long_arithm.cpp:168: multiple definition of `long_arithm::longint::fromString(std::basic_string<char, std::char_traits<char>, std::allocator<char> >)'
./long_arithm.o:/home/gxoptg/Документы/My works/Developing/C++/long_arithmetics/Debug/../long_arithm.cpp:168: first defined here
./main.o: In function `long_arithm::longint::chartodig(signed char)':
/home/gxoptg/Документы/My works/Developing/C++/long_arithmetics/Debug/../long_arithm.cpp:204: multiple definition of `long_arithm::longint::chartodig(signed char)'
./long_arithm.o:/home/gxoptg/Документы/My works/Developing/C++/long_arithmetics/Debug/../long_arithm.cpp:204: first defined here
./main.o: In function `long_arithm::longint::digtochar(signed char)':
/home/gxoptg/Документы/My works/Developing/C++/long_arithmetics/Debug/../long_arithm.cpp:188: multiple definition of `long_arithm::longint::digtochar(signed char)'
./long_arithm.o:/home/gxoptg/Документы/My works/Developing/C++/long_arithmetics/Debug/../long_arithm.cpp:188: first defined here
(注意,行

链接(如:188)已损坏,因为我扔掉了很多注释的代码行。

为什么我有这些错误以及我应该纠正什么?据我所知,

void fromInt(int num);

其他是"预定义",我没有看到该方法的任何其他定义。

谢谢你的帮助。

类定义之外定义的函数必须移动到源 (.cpp) 文件,或者必须在它们前面使用 inline 关键字。否则,函数的副本将放入包含标头的每个源文件中,并标记为可供其他模块使用,并且链接器会在有多个模块时进行投诉。

你说你在main中包含long_arithm.cpp。但是您也可以单独编译它,然后尝试将结果与 main.o .这就是导致重复的原因。

看起来您没有关闭命名空间定义,而是在命名空间内使用其名称来限定函数名称,同时在内部定义它们。将此.cpp文件包含在其他文件中可能会导致不同的.cpp文件中出现多个定义,从而导致上述问题。