摘要: 标准mem_fun_ref只能将数据交给类自己来处理,而不能由其它类来处理。下面这个mem_fun_ref可以将数据交给其它的类来处理.// TEMPLATE CLASS mem_fun_ref_ttemplate<class _Result,class _container,class _Ty>class mem_fun_ref_t: public std::binary_function<_container,_Ty, _Result>{// functor adapter (*left.*pfunc)(), non-const *pfuncpublic:expli 阅读全文