宽字符串

宽字符:                                       

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include<stdio.h>
  3. #include<string.h>
  4. #include<locale.h>
  5. int main()
  6. {
  7. char str[10]="轩辕";
  8. printf("%d,%d\n",sizeof(str), strlen(str));//10,4
  9. printf("%d\n",sizeof("轩辕"));    //5
  10.  
  11. printf("%c%c\n", str[0], str[1]);//轩
  12. printf("%c %c\n", str[0], str[1]);//乱码
  13.  
  14. printf("%d,%d\n",sizeof("hello"),sizeof(L"hello"));//6 12
  15.  
  16. char*p ="hello天朝";
  17. wchar_t*pw = L"hello天朝";
  18. printf("%s\n", p);//hello天朝
  19. //宽字符的错误输出:
  20. printf("%s\n", pw);     //h (输出结果不对)
  21. printf("%ls\n", pw);     //hello (输出结果不对)
  22. printf(L"%s\n", pw);     //无输出
  23. printf(L"%ls\n", pw);    //无输出
  24. //正确输出:
  25. //1:必须包含locale.h 2:必须设置本地语言 3:ls是处理宽字符的
  26. setlocale(LC_ALL,"zh-CN"); //简体中文
  27. printf("%ls\n", pw);     //hello天朝 (注意在setlocale下这句话也能正确打印)
  28. wprintf(L"%ls\n", pw);     //hello天朝
  29. return0;
  30. }
 
 
宽字符     strlen sizeof  :        
  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include<stdio.h>
  3. #include<string.h>
  4. int main()
  5. {
  6. wchar_t wstr[10]= L"刘威";
  7. printf("%d\n",sizeof(wstr));//20
  8. printf("%d\n", strlen(wstr));//4
  9. printf("%d\n",sizeof("刘威"));//5
  10. printf("%d\n", strlen("刘威"));//4
  11. printf("%d\n",sizeof(L"刘威"));//6
  12. printf("%d\n", strlen(L"刘威"));//4
  13. return0;
  14. }
 
 





posted @ 2014-09-29 23:25  我爱背单词  阅读(225)  评论(0编辑  收藏  举报