zoukankan      html  css  js  c++  java
  • VS下的wchar_t类型编码类型是UTF-8还是UTF-16?

    KEY: UTF-16.至少在我的Windows平台+vs2008

    使用sizeof(WCHAR)已测试就知道了。

    引用 9 楼  的回复:
    由实现定义:
    ISO C++11
    2.3/3
    ...The execution character set and the execution wide-character set are implementation-defined supersets of the basic execution character set and the basic execution wide-ch……

    没看懂,不过确定的是微软的编译器是UTF-16
    《windows核心编程》
    ANSI and Unicode Character and String Data Types
    I'm sure you're aware that the C language uses the char data type to represent an 8-bit ANSI character. By default, when you declare a literal string in your source code, the C compiler turns the string's characters into an array of 8-bit char data types:

    // An 8-bit character
    char c = 'A';

    // An array of 99 8-bit characters and an 8-bit terminating zero.
    char szBuffer[100] = "A String";

    Microsoft's C/C++ compiler defines a built-in data type, wchar_t, which represents a 16-bit Unicode (UTF-16) character. Because earlier versions of Microsoft's compiler did not offer this built-in data type, the compiler defines this data type only when the /Zc:wchar_t compiler switch is specified. By default, when you create a C++ project in Microsoft Visual Studio, this compiler switch is specified. We recommend that you always specify this compiler switch, as it is better to work with Unicode characters by way of the built-in primitive type understood intrinsically by the compiler.

     Note  Prior to the built-in compiler support, a C header file defined a wchar_t data type as follows:

    typedef unsigned short wchar_t;

     

    Here is how you declare a Unicode character and string:

    // A 16-bit character
    wchar_t c = L'A';

    // An array up to 99 16-bit characters and a 16-bit terminating zero.
    wchar_t szBuffer[100] = L"A String";

    An uppercase L before a literal string informs the compiler that the string should be compiled as a Unicode string. When the compiler places the string in the program's data section, it encodes each character using UTF16, interspersing zero bytes between every ASCII character in this simple case.

  • 相关阅读:
    1092 最好吃的月饼 (20 分)
    pat 乙级 1093 字符串A+B (20 分)
    pat乙级 1091 N-自守数 (15 分)
    查询GC日志、动态年龄计算
    四大特性以及事务的隔离级别
    R语言学习
    利用python进行数据分析3_Pandas的数据结构
    python_109_切片补充和list函数
    爬虫_python3_requests
    利用python进行数据分析1_numpy的基本操作,建模基础
  • 原文地址:https://www.cnblogs.com/tupx/p/3469630.html
Copyright © 2011-2022 走看看