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.

  • 相关阅读:
    矩阵按键转化为普通单个按键
    表达式位长 对结果的影响
    LuoguP3674 小清新人渣的本愿 && BZOJ4810: [Ynoi2017]由乃的玉米田
    BZOJ2956: 模积和
    NOIP2016 天天爱跑步
    LuoguP3948 数据结构
    AT2442 フェーン現象 (Foehn Phenomena)
    博客园美化笔记
    BZOJ2242: [SDOI2011]计算器
    分块入门与分块的经典应用
  • 原文地址:https://www.cnblogs.com/tupx/p/3469630.html
Copyright © 2011-2022 走看看