试图用C ++实现一个基本类

时间:2014-02-20 19:05:17

标签: c++

我正在学习C ++,目前正在尝试创建一个代表船长和重量的非常基本的类......我似乎遇到了将其拆分为header和cpp文件的问题。

这些是我正在使用的简单文件......

Boat.h:

#ifndef BOAT_H_
#define BOAT_H_
class Boat{
public:
    Boat();
    Boat(int,int);

private:
    int length;
    int weight;
};

#endif /* BOAT_H_ */

Boat.cpp:

#include "Boat.h"

Boat::Boat(){
    length = 25;
    weight = 2500;
}

Boat::Boat(int newLength, int newWeight){
    length = newLength;
    weight = newWeight;
}

编译时,我在Boat.cpp中遇到“首先在这里定义”的错误。我一直在关注教程并尝试像他们那样做,但我似乎无法做到这一点。这是完整的错误消息。我错过了什么?

C:\Documents and Settings\Administrateur\Bureau\Workspace\ClassTests\Debug/../Boat.cpp:4: multiple definition of `Boat::Boat()'
Main.o:C:\Documents and Settings\Administrateur\Bureau\Workspace\ClassTests\Debug/..//Boat.cpp:4: first defined here
Boat.o: In function `Boat':
C:\Documents and Settings\Administrateur\Bureau\Workspace\ClassTests\Debug/../Boat.cpp:4: multiple definition of `Boat::Boat()'
Main.o:C:\Documents and Settings\Administrateur\Bureau\Workspace\ClassTests\Debug/..//Boat.cpp:4: first defined here
Boat.o: In function `Boat':
C:\Documents and Settings\Administrateur\Bureau\Workspace\ClassTests\Debug/../Boat.cpp:9: multiple definition of `Boat::Boat(int, int)'
Main.o:C:\Documents and Settings\Administrateur\Bureau\Workspace\ClassTests\Debug/..//Boat.cpp:9: first defined here
Boat.o: In function `Boat':
C:\Documents and Settings\Administrateur\Bureau\Workspace\ClassTests\Debug/../Boat.cpp:9: multiple definition of `Boat::Boat(int, int)'
Main.o:C:\Documents and Settings\Administrateur\Bureau\Workspace\ClassTests\Debug/..//Boat.cpp:9: first defined here

编辑: 我在主要包括Boat.cpp而不是Boat.h ...问题解决了!谢谢!

2 个答案:

答案 0 :(得分:1)

无法确定您做了什么,但我确实设法使用此主要功能生成错误:

#include "Boat.h"
#include "Boat.cpp"

int main(int argc, const char *argv[])
{
    Boat b; 

    return 0;
}

按以下方式编译:

g++ -O0 -ggdb main.cpp  Boat.cpp -o main

,这恰好导致您报告的错误。无论你做了什么 - 你似乎都试图将Boat.cpp文件包含两次,这样你就可以将你的Boat类的定义加倍。

答案 1 :(得分:0)

似乎您将boat.cpp文件包含在有main函数的模块中。您只需要在带有main的模块中包含header.h。