STL函数学习(173)
更多函数讲解在175,这里只放置大众,让人注意的函数。std::enable_if源代码:
template<class _Ty>
struct enable_if<true, _Ty>
{ // type is _Ty for _Test
typedef _Ty ty
...
用代码创造世界