我看到 std::lower_bound() 和 std::upper_bound() 语法中的不一致(嗯,确实是类型转换)并且想知道是否有人可以解释一下?根据评论,尽管第 2 行与第 1 行明显相似,但它不会编译;您需要使用第 3 行显示的表格(至少在 gcc 4.7.3 / ubuntu 64 位上 - 这就是我要玩的全部内容)
#include <set>
#include <algorithm>
using namespace std;
class MyInt {
private:
int val;
public:
MyInt(int _val): val(_val) {}
bool operator<(const MyInt& other) const {return val < other.val;}
};
int main() {
set<MyInt> s;
s.insert(1); // demonstrate implicit conversion works
s.insert(MyInt(2));
s.insert(3); // one last one for the road
set<MyInt>::iterator itL = lower_bound(s.begin(), s.end(), 2); //LINE 1
// the line below will NOT compile
set<MyInt>::iterator itU = upper_bound(s.begin(), s.end(), 2); //LINE 2
// the line below WILL compile
set<MyInt>::iterator itU2 = upper_bound(s.begin(), s.end(), MyInt(2)); // LINE 3
return 0;
}