2020/11/02随记 string类与wstring类的区别

I know the higher you climbing the harder fall, however, I never care about the future till I crash down.

string类与wstring类的区别

ANSI  string类

​ 美国制定了一套字符编码,对英语字符与二进制位之间的关系,做了统一规定。这被称为ASCII码。

ANSI是默认的编码方式。对于英文文件是ASCII编码,对于简体中文文件是GB2312编码。

注意   英文占 1 个字节,汉字 2 个字节,以一个\0结尾。

string类的char中每个字符仅占据一个字节内存,没办法存储汉字

 

Unicode wstring类

字符串前面加L表示该字符串是Unicode字符串。

​ 这是一种所有符号的编码,可以容纳100多万个符号。

注意以Unicode16为例  每个字符(汉字、英文字母)都占 2 个字节,以 2 个连续的\0结尾。

wstring与string的存储方式有很大的不同,wstring所操作的wchar_t中每个字符占两个字节,可以存储一个汉字,特殊字符

如 L"我的字符串" 表示将ANSI字符串转换成unicode的字符串,就是每个字符占用两个字节。

strlen("asd") = 3;
strlen(L"asd") = 6;

 

UTF-8

​ UTF-8是互联网上使用最广的一种unicode的实现方式。

注意  英文占 1 个字节,汉字占 3 个字节。

 

 

string CRoundHollowPierDlg::UnicodeToANSI(const wchar_t* str)
{
    char*     pElementText;
    int    iTextLen;
    // wide char to multi char
    iTextLen = WideCharToMultiByte(CP_ACP,
        0,
        str,
        -1,
        NULL,
        0,
        NULL,
        NULL);
    pElementText = new char[iTextLen + 1];
    memset((void*)pElementText, 0, sizeof(char) * (iTextLen + 1));
    ::WideCharToMultiByte(CP_ACP,
        0,
        str,
        -1,
        pElementText,
        iTextLen,
        NULL,
        NULL);
    string strText;
    strText = pElementText;
    delete[] pElementText;

    return strText;
}

wstring CRoundHollowPierDlg::ANSIToUnicode(const string& str)
{
    int  len = 0;
    len = str.length();
    int  unicodeLen = ::MultiByteToWideChar(CP_ACP,
        0,
        str.c_str(),
        -1,
        NULL,
        0);
    wchar_t *  pUnicode;
    pUnicode = new  wchar_t[unicodeLen + 1];
    memset(pUnicode, 0, (unicodeLen + 1) * sizeof(wchar_t));
    ::MultiByteToWideChar(CP_ACP,
        0,
        str.c_str(),
        -1,
        (LPWSTR)pUnicode,
        unicodeLen);
    wstring  rt;
    rt = (wchar_t*)pUnicode;
    delete  pUnicode;

    return  rt;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值