> 问答

linux控制台显示中文

人阅读 2024-10-15 16:06:20Windows
广告 X
欧意最新版本

欧意最新版本

欧意最新版本app是一款安全、稳定、可靠的数字货币交易平台。

APP下载  官网地址

  #include <stdio.h>

  #include <wchar.h>

  #include <locale.h>

  int main()

  {

  #ifdef _WIN32

  setlocale(LC_ALL, "chs");

  #else

  setlocale(LC_ALL, "zh_CN.UTF-8");

  #endif

  wchar_t KZg[] = {0x6211, 0};

  char buf[10] = {0};

  wcstombs(buf,KZg,10);

  printf("_%s_\n",buf);

  }

  wchar_t 在linux上是4个字节, 在win32上是2个字节, MinGW也是2个字节.

  一般会节省空间使用utf-16.

  #ifdef _WIN32

  typedef wchar_t uchar;

  #else

  typedef unsigned short uchar; // 就不能使用string.h提供的宽字符串方法了.

  #endif

  linux上使用string常量只能用{}.

关键词标签:linux控制台显示中文

LOT物联网

iot产品 iot技术 iot应用 iot工程

Powered By LOT物联网  闽ICP备2024036174号-1

联系邮箱:support1012@126.com