- 论坛徽章:
- 14
|
#include <iostream>
#include <string>
#include <functional>
#include <algorithm>
using namespace std;
template<class T, class F>
class foo : unary_function<char,wchar_t>
{
public:
foo( T& t, F& f ) : t_(t), f_(f)
{
}
wchar_t operator()( char c )
{
return (t_.*f_)( c );
}
private:
T& t_;
F& f_;
};
template<class T, class F>
inline foo<T,F> bar( T& t, F& f )
{
return foo<T,F>( t, f );
}
int main( void )
{
string a = "abc中国";
wstring b;
transform( a.begin(), a.end(), back_inserter(b), bar(wcout,&basic_ios<wchar_t>::widen) );
wcout << b << endl;
}
这是我自己写的,如果能将 foo 和 bar 去掉就好了 |
|