摘要: for_each函数原形template<class _InIt, class _Fn1> inline _Fn1 for_each(_InIt _First, _InIt _Last, _Fn1 _Func) { // perform function for each element for (; _ChkFirst != _ChkLast; ++_ChkFirst) _Func(... 阅读全文
posted @ 2010-12-02 10:03 oayx 阅读(5677) 评论(0) 推荐(0) 编辑