IO库中的宽字符语言

2020-12-13 02:48

阅读:607

标签:code   include   def   height   方式   字符类型   http   bsp   names   

  • wchar_t是C/C++的字符类型,是一种扩展的存储方式。wchar_t类型主要用在国际化程序的实现中,但它不等同于uni编码。uni编码的字符一般以wchar_t类型存。
  • IO库为了支持宽字符语言,定义了一组类型和对象来操作wchar_t类型。例如:wcin,wcout,wcerr;以及如下图头文件:技术图片
    #include 
     
    using namespace std;
     
    int main()
    {
        wchar_t wStr[]=L"ABCDEFG";
        char Str[] = "ABCDEFG";
        wcout
    

     

IO库中的宽字符语言

标签:code   include   def   height   方式   字符类型   http   bsp   names   

原文地址:https://www.cnblogs.com/TD-Lemon1996/p/11056513.html


评论


亲,登录后才可以留言!