gpt4 book ai didi

c++ - 尝试用 C++ 实现一个基本类

转载 作者:行者123 更新时间:2023-11-28 07:04:50 25 4
gpt4 key购买 nike

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

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

船.h:

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

private:
int length;
int weight;
};

#endif /* BOAT_H_ */

船.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

编辑:我在 main 中包含了 Boat.cpp 而不是 Boat.h... 问题解决了!谢谢!

最佳答案

没有办法确定你做了什么,但我确实设法用这个主要函数产生了你的错误:

#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 类的定义。

关于c++ - 尝试用 C++ 实现一个基本类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21917181/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com