我有一个包含课程的列表
list<PointTwoD> point
这是我上课的声明
class PointTwoD:public locationdata
{
public:
PointTwoD();
PointTwoD(string,int,int,float,float,int,int);
void set_x(int);
int get_x();
void set_y(int);
int get_y();
void set_civIndex(float);
float get_civIndex();
friend class MissionPlan;
private:
int x;
int y;
float civIndex;
};
我正在尝试根据私有成员civIndex对列表进行排序。我试过在列表上调用sort函数,但是它不起作用。
有人可以建议我如何根据私有成员civIndex的值对列表进行排序吗?
最佳答案
您可以通过在类中添加小于号运算符来实现:
bool operator<(const PointTwoD& other) const
{
return civIndex < other.civIndex;
}
如果您不希望使用通用的小于号运算符,但仍需要对列表进行排序,则可以提供一个执行相同操作的比较函数:
bool compare_PointTwoD(const PointTwoD& first, const PointTwoD& second)
{
return first.get_civIndex() < second.get_civIndex();
}
并调用这样的排序:
std::list<PointTwoD> lpt;
lpt.sort(compare_PointTwoD);