在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
greater和less是xfunctional.h中的两个结构体,代码如下: 1 template<class _Ty = void> 2 struct less 3 { // functor for operator< 4 typedef _Ty first_argument_type; 5 typedef _Ty second_argument_type; 6 typedef bool result_type; 7 8 constexpr bool operator()(const _Ty& _Left, const _Ty& _Right) const 9 { // apply operator< to operands 10 return (_Left < _Right); 11 } 12 }; 1 template<class _Ty = void> 2 struct greater 3 { // functor for operator> 4 typedef _Ty first_argument_type; 5 typedef _Ty second_argument_type; 6 typedef bool result_type; 7 8 constexpr bool operator()(const _Ty& _Left, const _Ty& _Right) const 9 { // apply operator> to operands 10 return (_Left > _Right); 11 } 12 }; greater表示内置类型从大到小排序,less表示内置类型从小到大排序。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论