std::sort(vecTest.begin(), vecTest.end())
默认升序。
其他情况可能就需要自定义排序函数了:
bool SortByM1( const Test &v1, const Test &v2) //注意:本函数的参数的类型一定要与vector中元素的类型一致
{
return v1.member1 < v2.member1;//升序排列
}
....std::sort(vecTest.begin(), vecTest.end(), SortByM1)