作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习 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/
我是一名优秀的程序员,十分优秀!