SetRegistryKey(_T("Local AppWizard-Generated Applications"))_T表示什么意思?

解决方案 »

  1.   

    #define _T(x)       __T(x)
    #define __T(x)      x
    or
    #define __T(x)      L ## x
      

  2.   

    把字符串转换成unicode,也就是采用双字节对字符进行编码
    国际化规范
      

  3.   

    agree with changbaohua(changbao)
      

  4.   

    Unicode编码阿,我想知道的是,这样做之后显示的时候有什么不同么?有时候有对不齐的问题
      

  5.   

    机子允许时,字符串会自动转换成unicode,否则ASCII,即_T("12345")="12345".
      

  6.   

    把字符串转换成unicode,也就是采用双字节对字符进行编码