wchar_t * wide_string = new wchar_t[ s.length() + 1 ]; std::copy( s.begin(), s.end(), wide_string ); wide_string[ s.length() ] = 0; ...
確定! 回上一頁