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.

  • 相关阅读:
    求100内的数和
    汉诺塔(印度传说)
    ORA-06502:PL/SQL:数字或值错误:数值精度太高
    触发器的编写
    mysql改密码
    LeetCode-238 Product of Array Except Self
    LeetCode-236 Lowest Common Ancestor of a Binary Tree
    LeetCode-233 Number of Digit One
    LeetCode-230 Kth Smallest Element in a BST
    LeetCode-229 Majority Element II
  • 原文地址:https://www.cnblogs.com/tupx/p/3469630.html
Copyright © 2011-2022 走看看