0

存在以下课程:

class Actor {
public:

    float xpos{0};
    float ypos{0};

    Actor(float x, float y);
    ~Actor();
};

在管理类的静态函数中,我想创建这样一个演员并将其插入到一个集合中:

class ActorManager {
private:
    ActorManager();
    static std::set<Actor> actors;
public:
    static void addActor(float x, float y);
}

定义:

std::set<Actor> ActorManager::actors = std::set<Actor>();

void ActorManager::addActor(float x, float y) {
    Actor actor(x, y);
    actors.insert(actor); // <--
}

出现标记线时actors.insert,编译失败。错误指出:

/usr/lib/c++/v1/__functional_base:56:21: Invalid operands to binary expression ('const Actor' and 'const Actor')

我在这里想念什么?

4

2 回答 2

3

您需要重载operator<才能使用您的类std::set(它需要这个才能对元素进行排序)。

于 2013-06-12T01:57:13.387 回答
0
bool operator <(const Actor& p1, const Actor& p2){
bool result=false;
if (p1.x<p2.x) 
{
result=true;
}
else if (p1.x==p2.x&&p1.y<p2.y){
result=true;
}
return result;

}

//这是重载<操作符的正确方式

于 2015-11-12T08:51:09.913 回答