本文主要是介绍C++中设置所有字符为简体中文,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include <iostream>
#include <locale>
using std::wcout;
using std::endl;
int main()
{
setlocale(LC_ALL,"chs"); ///设置所有字符为简体中文
wchar_t wt[]=L"中"; //声明宽字符类型变量,L告诉编译器分配两个字节的空间
wcout<<wt<<endl; //输出用wcout类
return 0;
}
#include <iostream>
using namespace std;
int main()
{
cout<<"int:"<<sizeof(int)<<endl; //在16b机中2B,除此之外4B
cout<<"short:"<<sizeof(short)<<endl; //固定2B
cout<<"long:"<<sizeof(long)<<endl; //固定4B
return 0;
}
这篇关于C++中设置所有字符为简体中文的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!