Ich sah, was aussieht wie eine Inkonsistenz in der std :: lower_bound() und std :: upper_bound() -Syntaxen (Nun, Typ-Konvertierung, wirklich) und fragte mich, ob jemand bitte erläutern könnte? Laut den Kommentaren wird Zeile 2 trotz ihrer offensichtlichen Ähnlichkeit zu Zeile 1 nicht kompiliert; Sie müssen das Formular auf der Linie 3 gezeigt verwenden (auf gcc 4.7.3/ubuntu 64-Bit zumindest - das ist alles, was ich habe, mit spielen)Obere_Bound und Lower_Bound Inkonsistente Wert Anforderungen
#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;
}
Gleiches Verhalten mit g ++ 4.8.4 hier. Es ist definitiv ein g ++ Bug. –