码迷,mamicode.com
首页 > 其他好文 > 详细

wchar_t的用法

时间:2014-11-07 23:16:09      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   使用   sp   

wchar_t的解释可以看这里:这里

程序和解析:

bubuko.com,布布扣
 1 # include<stdio.h>
 2 # include<stdlib.h>
 3 # include<locale.h>//设置本地化
 4 int main()
 5 {
 6     //常规的输出汉字
 7     char s[100] = "我是大好人";
 8     printf("%c%c\n", s[0], s[1]);
 9 
10 
11     //不合法输出,ascii中没有汉字,char只能输出字母,数字,字符
12     char x = ;
13     printf("%c\n", x);
14 
15 
16     //用wchar_t  存储宽字符
17     wchar_t ch = L;//宽字符
18     printf("%d", sizeof(ch));
19     setlocale(LC_ALL, "chs");//简体中文
20     wprintf(L"\n %wc", ch); //汉字当作一个字符
21     wchar_t str[100] = L"我是一个好人";
22     wprintf(L"\n %s \n", str);
23     system("pause");
24 }
View Code

MessageBox
使用多字节字符集        MessageBox(0,"我的手机","我的手机",0)
unicode            MessageBox(0,L"我的手机",L"我的手机",0)
无论是多字节还是unicode,我就是多字节    MessageBoxA(0,"A我的手机","A我的手机",0)
无论是多字节还是unicode,我就是unicode    MessageBoxW(0,L"W我的手机",L"W我的手机",0)
自适应unicode或多字节            MessageBox(0,TEXT("AW我的手机"),TEXT("AW我的手机")0)

wchar_t的用法

标签:style   blog   http   io   color   ar   os   使用   sp   

原文地址:http://www.cnblogs.com/sxmcACM/p/4082425.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!