Warum wird swap nur von std :: sort aufgerufen, wenn mein Container mehr als 32 Elemente enthält?
Hallo, ich habe eine einfache Frage: class A { public: A(int); A(const A&); A& operator=(const A&); ~A(); private: int* ptr_; friend bool operator<(const A&, const A&); friend void swap(A&, A&); }; A::A(int x) : ptr_(new int(x)) {} A::A(const A& rhs) :...