zoukankan      html  css  js  c++  java
  • 格式化输出中的%s和%S的陷阱

    CStringA csa;
    CStringA csc;
    CString csb(L"131231111111");
    csa.Format("%s", csb);      // 只会输出1
    csc.Format("%S", csb);      // 会输出131231111111

    printf("%s ", csa.GetBuffer(0));
    printf("%s ", csc.GetBuffer(0));

    本意想输出131231111111,可是"%s"只会输出1,因为%s是按照ascill编码,而csb是unicode编码,unicode编码格式是一个"1"后会跟一个0x00,所以对于ascill来说,就认为字符串终止了.

    %s和%S在不同的环境下,含义不一样:

    s

    When used with printf functions, specifies a single-byte–character string; when used with wprintf functions, specifies a wide-character string. Characters are printed up to the first null character or until the precision value is reached

    S

    When used with printf functions, specifies a wide-character string; when used with wprintf functions, specifies a single-byte–character string. Characters are printed up to the first null character or until the precision value is reached.

  • 相关阅读:
    Python字符串
    MySQL触发器
    MySQL 1418报错解决办法
    数据库下载
    补码与反码
    二、八、十六进制之间的转换
    this 指向
    作用域 var 词法分析 arguments
    事件绑定的3种方式
    清浮动方法小结
  • 原文地址:https://www.cnblogs.com/ashooter/p/4474418.html
Copyright © 2011-2022 走看看