我一直想知道为什么没有
sort(v);// same as std::sort(v.begin(),v.end())
如果我很久以前没记错的话,我看到一个 boostcon 剪辑,演讲者说这个概念是必需的,但我不明白为什么。顺便说一句,我尝试了这个(在 VS 11 中),从我所看到的情况来看,它工作得很好。
template <typename Container>
void sortfx(Container& c)
{
std::sort(c.begin(),c.end());
}
int main()
{
std::vector<double> v;
//std::list<double> v; this causes compile errors
v.push_back(1701);
v.push_back(1729);
v.push_back(74656);
v.push_back(2063);
sortfx(v);
assert(std::is_sorted(begin(v),end(v)));
}
编辑:Bjarne 自己解释了这些概念,并以排序为例 :) https://www.informit.com/articles/article.aspx?p=2080042&WT.rss_f=Article&WT.rss_a=An%20Interview%20with%20Bjarne%20Stroustrup&WT .rss_ev=a