我有一个由几个子模块组成的项目。由于我有一些结构,例如 Point 或 Rectangle,我希望有一个单独的头文件,其中定义了这些数据结构及其运算符。然后将其包含在其他源文件中。我有
结构体.hpp
namespace datastructures {
struct Rectangle {
int width;
int height;
};
bool operator<=(const Rectangle& lhs, const Rectangle& rhs){
return lhs.width <= rhs.width;
}
}// end namespace
算法.hpp
我有另一个文件 Algorithm.hpp 看起来类似于:
#include "structures.hpp"
class Algorithm {
public:
typedef datastructures::Rectangle Rectangle;
void func1(int median);
private:
std::vector<Rectangle> rectangles_;
}
这编译得很好。但是使用运算符似乎根本不起作用。
算法.cpp
void Algorithm::func1(int median){
std::nth_element(rectangles_.begin(),
rectangles_.begin() + median, rectangles_.end(), datastructures::operator<=);
}
这会给模板带来编译器错误,最有意义的是
no matching function for call to
‘nth_element(std::vector<datastructures::Rectangle>::iterator&,
std::vector<datastructures::Rectangle>::iterator&,
std::vector<datastructures::Rectangle>::iterator&,
<unresolved overloaded function type>)’
为什么它operator<=
从我的数据结构头文件中不知道?