我试图声明一个充当枚举的类。但如果我不止一次地加入它,我会得到几个重复的符号"错误。
这是我的ItemType.h
文件
#ifndef DarkSnake_ItemType_h
#define DarkSnake_ItemType_h
#define COLOR_ITEM_1 0xffff00ff
#define COLOR_ITEM_2 0xffff03ff
#define COLOR_ITEM_3 0xffff06ff
class ItemType {
public:
static const ItemType NONE;
static const ItemType ITEM_1;
static const ItemType ITEM_2;
static const ItemType ITEM_3;
static ItemType values[];
static ItemType getItemTypeByColor(const int color) {
for (int i = 0; 3; i++) {
if (color == values[i].getItemColor()) {
return values[i];
}
}
return NONE;
}
bool operator ==(const ItemType &item) const;
bool operator !=(const ItemType &item) const;
int getItemColor() { return this->color; };
private:
const int color;
ItemType(const int _color) : color(_color) {}
};
bool ItemType::operator == (const ItemType &item) const {
return this->color == item.color;
}
bool ItemType::operator != (const ItemType &item) const {
return this->color != item.color;
}
#endif
这是我的ItemType.cpp
:
#include "ItemType.h"
const ItemType ItemType::NONE = ItemType(0);
const ItemType ItemType::ITEM_1 = ItemType(COLOR_ITEM_1);
const ItemType ItemType::ITEM_2 = ItemType(COLOR_ITEM_2);
const ItemType ItemType::ITEM_3 = ItemType(COLOR_ITEM_3);
ItemType ItemType::values[] = {ItemType::ITEM_1, ItemType::ITEM_2, ItemType::ITEM_3};
在第一次尝试时,我试图将C ++代码放入头文件中,我得到了同样的错误。但现在我不知道自己做错了什么。
请帮帮我吗?
非常感谢!
答案 0 :(得分:2)
您无法在头文件中定义类外的非inline
函数。
要解决此问题,您有三种可能性:
operator==
和operator!=
的定义。ItemType.cpp
。inline
。