クラス Point を定義しました。クラス PointCollection もあります。class PointCollection: public QVector<Point>
ここでいくつかのメソッドを実装すると、次のエラーが発生します。
エラー: 'operator==' に一致しません (オペランド タイプは 'Point' と 'const Point' です)
このエラーが発生したコード部分は次のとおりです。
Point PointCollection::getNearestPointToCentroid()
{
float minDist = 0.0;
int NearestPointToCentroidIndex = -1;
while(!this->empty())
{
Point point;
Point centroid;
float dist = PointT.calculateEuclideanDist(point, centroid);
if(this->indexOf(point) == 0)
{
minDist = dist;
NearestPointToCentroidIndex = this->indexOf(point);
}
else
{
if(minDist > dist)
{
minDist = dist;
NearestPointToCentroidIndex = this->indexOf(point);
}
}
}
return(this[NearestPointToCentroidIndex]);
}
ここで:Point centorid;float X;float Y;int Id;
は PointCollection クラスのプライベート変数です。コンストラクターで次を定義します。
PointCollection::PointCollection()
{
//centorid = new Point;
Id = PointT.GetId();
X = PointT.GetX();
Y = PointT.GetY();
}
と
float Point::calculateEuclideanDist(Point point_1, Point point_2)
{
float x1 = point_1.x, y1 = point_1.y;
float x2 = point_2.x, y2 = point_2.y;
float dist = qSqrt(qPow(x2 - x1, 2.0) + qPow(y2 - y1, 2.0));
return (dist);
}