为什么以下代码无法编译:
int main() {
map<int, int> m = { {1, 2}, {3, 4}};
auto p = std::min(m.begin(), m.end(), [](const map<int, int>::value_type& a, const map<int, int>::value_type& b) { return a.second < b.second;});
std::cout << (p->second) << std::endl;
}
错误是:
X.cc:11:114: note: main()::<lambda(const value_type&, const value_type&)>
X.cc:11:114: note: no known conversion for argument 1 from 'const std::_Rb_tree_iterator<std::pair<const int, int> >' to 'const value_type& {aka const std::pair<const int, int>&}'
我在这里做错了什么?如果那是一个向量,比如整数向量,我们可以做到
[](int a, int b){return a<b;}
为什么我们不能在这里做同样的事情?