Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1090994
  • 博文数量: 252
  • 博客积分: 4561
  • 博客等级: 上校
  • 技术积分: 2833
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-15 08:23
文章分类

全部博文(252)

文章存档

2015年(2)

2014年(1)

2013年(1)

2012年(16)

2011年(42)

2010年(67)

2009年(87)

2008年(36)

分类:

2010-03-25 14:19:26

#include

#include
#include
#include
#include

using namespace std;

int main()
{    
        setlocale(LC_ALL, "zh_CN.UTF-8");
        ios_base::sync_with_stdio(false);
        locale loc("zh_CN.UTF-8");
        wcout.imbue(loc);

        wchar_t wch[] = L"out中国人out";

        char ch[80];
        memset(ch, '\0', sizeof(ch));
        int result = wcstombs(ch, wch, sizeof(ch) - 1);
        cout << "result = " << result << endl;
        cout << "strlen(ch) = " << strlen(ch) << endl;

        wchar_t wch2[20];
        mbstowcs(wch2, ch, 20);

        wcout << wch2 << endl;

        return 0;
}

阅读(908) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2010-03-27 09:56:18

[code] #include #include #include #include #include using namespace std; int main() { setlocale(LC_ALL, "zh_CN.UTF-8"); const wchar_t wstr[] = L"higklmn中opq国abcdefg"; char ch[4096]; memset(ch, '\0', sizeof(ch)); wcstombs(ch, wstr, sizeof(ch) - 1); printf("%s\n", ch); wchar_t wstr2[4096]; memset(wstr2, L'\0', 4096); mbstowcs(wstr2, ch, 4095);