标签: c++ sorting stdmap
我知道std::map本质上是有序地图,但我想知道:
std::map
如果我有A和B类,并且创建了std::map<A, B> myMap;,那么创建自己的订单所需的最低费用是什么?
A
B
std::map<A, B> myMap;
重载A::operator <(const A&)是否足够?
A::operator <(const A&)
还是我必须制作自己的迭代器?