【C++】仿函数的简单例子
用generator_n()来生成10个随机数,其中第三个参数是仿函数class Point{ friend ostream& operator<<(ostream& o, const Point& other);public: Point(int x = 0, int y = 0):_x(x), _y(y){}private: int _x, _y;};//仿函数,我们想要一个取值范围为[left,