摘要:
1 // lib中的swap 2 namespace std { 3 template 4 void swap (T& a, T& b) 5 { 6 T temp(a); 7 a = b; 8 b = tem... 阅读全文
posted @ 2015-03-20 20:49
CloudFeng
阅读(289)
评论(0)
推荐(0)
摘要:
1 // lib中的swap 2 namespace std { 3 template 4 void swap (T& a, T& b) 5 { 6 T temp(a); 7 a = b; 8 b = tem... 阅读全文
posted @ 2015-03-20 20:49
CloudFeng
阅读(289)
评论(0)
推荐(0)
|