📅  最后修改于: 2020-09-25 14:33:17             🧑  作者: Mango
wctrans() 函数在
wctrans_t wctrans(const char* str);
wctrans() 函数将C 字符串作为其参数,并返回类型wctrans_t的值,该值用于映射宽字符。
#include
#include
#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, "en_US.UTF-8");
wchar_t str[] = L"Ŝŵitĉhiňģ Ćăse";
wcout << L"Before transformation" << endl;
wcout << str << endl;
for(int i=0; i
运行该程序时,输出为:
Before transformation
Ŝŵitĉhiňģ Ćăse
After transformation
ŝŴITĈHIŇĢ ćĂSE